dotfiles/packages/scripts/hg-picker/default.nix
2025-12-15 12:02:08 +01:00

13 lines
254 B
Nix

{pkgs, ...}:
pkgs.writeShellApplication {
name = "hg-picker";
text = ''
BASE_URI="https://github.com/hausgold/"
REPO=$(cat "$HOME/.gh/hausgold-repos" | fuzzel -d)
if [[ -n $REPO ]]; then
open-url "$BASE_URI$REPO"
fi
'';
}