nix-dotfiles/services/scripts/select.nix
JuliaLange c97d94408e Add kitty, obs, and scripts skeleton code
Also refactors some flake.nix code to not use dictionaries
2024-04-18 02:37:51 -07:00

15 lines
220 B
Nix

{ pkgs }:
pkgs.writeShellApplication {
name = "select";
runtimeInputs = [ fzf rofi ];
text = ''
if [ ${PPID} -ne 1 ]; then
echo -e $1 | fzf
else
echo -e $1 | rofi -dmenu -p $2
fi
'';
}