Files
SaugOS/modules/home/scripts/rofi-launcher.nix
2026-03-24 19:07:42 +01:00

9 lines
166 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
''