Files
garandos/modules/home/scripts/rofi-launcher.nix
2025-09-13 23:16:22 +02: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
''