zaneyos/modules/home/scripts/rofi-launcher.nix

9 lines
164 B
Nix

{pkgs}:
pkgs.writeShellScriptBin "rofi-launcher" ''
# check if rofi is already running
if pidof rofi > /dev/null; then
pkill rofi
fi
rofi -show drun
''