mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 11:08:34 +01:00
9 lines
164 B
Nix
9 lines
164 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
|
|
''
|