dotnix/modules/home/scripts/rofi-launcher.nix
2025-03-29 19:05:05 +01:00

10 lines
168 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
''