From 19b3ac8e9bbe64d28cad9ef66847ec73c0e5cfbc Mon Sep 17 00:00:00 2001 From: The_miro Date: Fri, 20 Feb 2026 11:06:00 +0100 Subject: [PATCH] further improvements on the earlier --- desktopenvs/hyprland/scripts/frequentcommands.list | 9 +++++++++ desktopenvs/hyprland/scripts/toggle-layout.sh | 2 ++ 2 files changed, 11 insertions(+) diff --git a/desktopenvs/hyprland/scripts/frequentcommands.list b/desktopenvs/hyprland/scripts/frequentcommands.list index 9423b1f..5cfc086 100644 --- a/desktopenvs/hyprland/scripts/frequentcommands.list +++ b/desktopenvs/hyprland/scripts/frequentcommands.list @@ -1,4 +1,7 @@ +wg-quick up wg0 +wg-quick down wg0 hyprshutdown +hyprshutdown && reboot poweroff hyprctl kill reboot @@ -16,3 +19,9 @@ kitty nvim ~/.config/binds.conf ~/Dotfiles/desktopenvs/hyprland/scripts/caffeine.sh ~/Dotfiles/desktopenvs/hyprland/scripts/hyprland-toggle-touchpad.sh eww reload +chamel stroke-color "#00BFFF" +chamel stroke-color "#000000" +chamel stroke-color "#FFFFFF" +chamel stroke-color "#00FF00" +chamel stroke-color "#0000FF" +chamel stroke-color "#FF00FF" diff --git a/desktopenvs/hyprland/scripts/toggle-layout.sh b/desktopenvs/hyprland/scripts/toggle-layout.sh index 939f7b0..2985804 100755 --- a/desktopenvs/hyprland/scripts/toggle-layout.sh +++ b/desktopenvs/hyprland/scripts/toggle-layout.sh @@ -3,8 +3,10 @@ statecon=$( hyprctl getoption general:layout | grep master ) #notify-send $statecon if [ "$statecon" != '' ]; then + notify-send "Layout: Dwindle" hyprctl keyword general:layout dwindle else + notify-send "Layout: Master" hyprctl keyword general:layout master fi