zaneyos-modified/scripts/rofi-launcher.nix
2024-08-20 12:58:53 -04:00

11 lines
180 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
''