Files
nix-zaneyos/scripts/rofi-launcher.nix
2024-10-31 20:28:32 +01:00

10 lines
177 B
Nix

{pkgs}:
pkgs.writeShellScriptBin "rofi-launcher" ''
if pgrep -x "rofi" > /dev/null; then
# Rofi is running, kill it
pkill -x rofi
exit 0
fi
rofi -show drun
''