diff options
Diffstat (limited to 'config/hypr/UserScripts')
| -rwxr-xr-x | config/hypr/UserScripts/QuickEdit.sh | 16 | ||||
| -rwxr-xr-x | config/hypr/UserScripts/RainbowBorders.sh | 4 |
2 files changed, 13 insertions, 7 deletions
diff --git a/config/hypr/UserScripts/QuickEdit.sh b/config/hypr/UserScripts/QuickEdit.sh index 8864a30c..6320218b 100755 --- a/config/hypr/UserScripts/QuickEdit.sh +++ b/config/hypr/UserScripts/QuickEdit.sh @@ -16,9 +16,10 @@ menu(){ printf "5. edit Monitors\n" printf "6. edit Laptop-Keybinds\n" printf "7. edit User-Settings\n" - printf "8. edit Workspace-Rules\n" - printf "9. edit Default-Settings\n" - printf "10. edit Default-Keybinds\n" + printf "8. edit Decorations & Animations\n" + printf "9. edit Workspace-Rules\n" + printf "10. edit Default-Settings\n" + printf "11. edit Default-Keybinds\n" } main() { @@ -46,12 +47,15 @@ main() { $tty $editor "$UserConfigs/UserSettings.conf" ;; 8) - $tty $editor "$UserConfigs/WorkspaceRules.conf" + $tty $editor "$UserConfigs/UserDecorAnimations.conf" ;; - 9) + 9) + $tty $editor "$UserConfigs/WorkspaceRules.conf" + ;; + 10) $tty $editor "$configs/Settings.conf" ;; - 10) + 11) $tty $editor "$configs/Keybinds.conf" ;; *) diff --git a/config/hypr/UserScripts/RainbowBorders.sh b/config/hypr/UserScripts/RainbowBorders.sh index 1f5e6cdb..49295680 100755 --- a/config/hypr/UserScripts/RainbowBorders.sh +++ b/config/hypr/UserScripts/RainbowBorders.sh @@ -5,6 +5,8 @@ function random_hex() { echo $random_hex } +# rainbow colors only for active window hyprctl keyword general:col.active_border $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) 270deg -hyprctl keyword general:col.inactive_border $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) 270deg
\ No newline at end of file +# rainbow colors for inactive window (uncomment to take effect) +#hyprctl keyword general:col.inactive_border $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) 270deg
\ No newline at end of file |
