summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorcaley <u65487754@gmail.com>2026-05-28 14:29:46 +0200
committerGitHub <noreply@github.com>2026-05-28 14:29:46 +0200
commitef54e787d1875d107b1e0f16353029df79000c14 (patch)
tree95d6e58b2a6cca712e1beb68b6b5273d2a5f6f83 /nixos
parent87bcb80c4f0e8e711f8ce3f75abef02f981ea911 (diff)
Update cat.nix
Diffstat (limited to 'nixos')
-rw-r--r--nixos/cat.nix3
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
'')