diff options
Diffstat (limited to 'nixos/cat.nix')
| -rw-r--r-- | nixos/cat.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/cat.nix b/nixos/cat.nix index 7953f2d..44723ab 100644 --- a/nixos/cat.nix +++ b/nixos/cat.nix @@ -186,14 +186,13 @@ home.packages = with pkgs; [ (writeShellScriptBin "master" '' - options="config\nsettings\nwallpaper\nssh\npower" + options="config\nsettings\nwallpaper\npower" choice=$(echo -e "$options" | ${pkgs.rofi}/bin/rofi -dmenu -i -p ">") case "$choice" in *config*) exec "config" ;; *settings*) exec "settings" ;; *wallpaper*) exec "wallpaper" ;; - *ssh*) exec "ssh" ;; *power*) exec "power" ;; esac '') |
