diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-08-28 20:53:38 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:41:57 -0700 |
| commit | 52a4303cdd1cbd474d4ff5ee833bb705b8d099df (patch) | |
| tree | 5c800db00c25f01386de9e4eda19b1372fe42d8c /config/hypr/configs | |
| parent | 7b8e57dad69facd776788c69f2456260428483dd (diff) | |
Added theming for nwg-dock-hyprland
Signed-off-by: Don Williams <don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: CHANGELOG.md
modified: config/hypr/configs/Keybinds.conf
modified: config/hypr/configs/system_keybinds.lua
new file: config/hypr/scripts/Dock.sh
modified: config/hypr/scripts/KeyHints.sh
modified: config/hypr/scripts/Refresh.sh
new file: config/nwg-dock-hyprland/style.css
new file: config/nwg-dock-hyprland/wallust/colors-wallust.css
new file: config/wallust/templates/colors-nwg-dock.css
modified: config/wallust/wallust-v4.toml
modified: config/wallust/wallust.toml
modified: docs/Keybinds.md
modified: scripts/lib_copy.sh
Diffstat (limited to 'config/hypr/configs')
| -rw-r--r-- | config/hypr/configs/Keybinds.conf | 1 | ||||
| -rw-r--r-- | config/hypr/configs/system_keybinds.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index 9fa00a63..3ff5308c 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -92,6 +92,7 @@ bindd = $mainMod, Q, Close active window, killactive, bindd = $mainMod SHIFT, Q, Terminate active process, exec, $scriptsDir/KillActiveProcess.sh bindd = CTRL ALT, L, Lock screen, exec, $scriptsDir/LockScreen.sh bindd = CTRL ALT, P, Powermenu, exec, $scriptsDir/Wlogout.sh +bindd = CTRL ALT, D, Toggle dock, exec, $scriptsDir/Dock.sh bindd = $mainMod SHIFT, N, Notification panel, exec, swaync-client -t -sw bindd = $mainMod SHIFT, E, Quick settings menu, exec, $scriptsDir/Kool_Quick_Settings.sh diff --git a/config/hypr/configs/system_keybinds.lua b/config/hypr/configs/system_keybinds.lua index 0106b3fa..ce0414ab 100644 --- a/config/hypr/configs/system_keybinds.lua +++ b/config/hypr/configs/system_keybinds.lua @@ -497,6 +497,7 @@ bind( ) bind("CTRL ALT", "L", exec_cmd("$HOME/.config/hypr/scripts/LockScreen.sh"), { description = "lock screen" }) bind("CTRL ALT", "P", exec_cmd("$HOME/.config/hypr/scripts/Wlogout.sh"), { description = "powermenu" }) +bind("CTRL ALT", "D", exec_cmd("$HOME/.config/hypr/scripts/Dock.sh"), { description = "toggle dock" }) bind("SUPER SHIFT", "N", exec_cmd("swaync-client -t -sw"), { description = "notification panel" }) bind( "SUPER SHIFT", |
