From 22f37a8ee7d4364e85cafa14886dcf52ca98ed37 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sun, 19 Nov 2023 17:27:02 +0100 Subject: [PATCH] Add desktop shell aliases - heliox controls - system controls (shutdown/suspend) --- modules/shell/fish.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/shell/fish.nix b/modules/shell/fish.nix index 82f5d8e..15e12db 100644 --- a/modules/shell/fish.nix +++ b/modules/shell/fish.nix @@ -16,6 +16,10 @@ lzg = "lazygit"; lzd = "lazydocker"; batt = ''upower -i /org/freedesktop/UPower/devices/battery_BAT0 | grep -e "percentage" -e "state"''; + hxoff = "~/Documents/heliox-cli/target/debug/heliox-cli --mode off"; + hxson = "~/Documents/heliox-cli/target/debug/heliox-cli --mode son"; + slp = "systemctl suspend"; + sdn = "shutdown 0"; }; }; };