13 lines
254 B
Nix
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
|
|
'';
|
|
}
|