diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-07-30 04:41:36 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:41:34 -0700 |
| commit | e35dbb319b1e2daca3b093ae2ed4c46b5ca01bd0 (patch) | |
| tree | e063736cbc88813176f4bb5d3275c8a2a859c723 /config/hypr/lua/keybinds.lua | |
| parent | 298642a6ad41f9654f7fc74808a348c85eedc3fc (diff) | |
Fixed duplicate bininds added docs/keybinds.md
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/lua/keybinds.lua
new file: docs/Keybinds.md
Diffstat (limited to 'config/hypr/lua/keybinds.lua')
| -rw-r--r-- | config/hypr/lua/keybinds.lua | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/config/hypr/lua/keybinds.lua b/config/hypr/lua/keybinds.lua index f67fa599..6dd188c3 100644 --- a/config/hypr/lua/keybinds.lua +++ b/config/hypr/lua/keybinds.lua @@ -142,7 +142,7 @@ local app_binds = { { "CTRL ALT", "W", "$HOME/.config/hypr/scripts/WallpaperRandom.sh", "random wallpaper" }, { "SUPER SHIFT", "K", "$HOME/.config/hypr/scripts/KeyBinds.sh", "search keybinds" }, { "SUPER SHIFT", "A", "$HOME/.config/hypr/scripts/Animations.sh", "animations menu" }, - { "SUPER SHIFT", "R", "$HOME/.config/hypr/scripts/ZshChangeTheme.sh", "change oh-my-zsh theme" }, + { "SUPER SHIFT", "O", "$HOME/.config/hypr/scripts/ZshChangeTheme.sh", "change oh-my-zsh theme" }, { "SUPER ALT", "C", "$HOME/.config/hypr/UserScripts/RofiCalc.sh", "calculator" }, } for _, app in ipairs(app_binds) do @@ -316,7 +316,7 @@ bind( exec_cmd("hyprctl keyword scrolling:direction right"), { description = "Horizonal scroll right" } ) -bind("SUPER ALT", "V", exec_cmd("hyprctl keyword scrolling:direction down"), { description = "Vertical Scroll down" }) +bind("SUPER CTRL", "V", exec_cmd("hyprctl keyword scrolling:direction down"), { description = "Vertical Scroll down" }) bind( "SUPER ALT", "S", @@ -609,8 +609,7 @@ bind("SUPER", "G", dispatch("togglegroup", ""), { description = "toggle group" } bind("SUPER", "Tab", dispatch("changegroupactive", "f"), { description = "Change Group Forward" }) bind("SUPER CTRL", "tab", dispatch("changegroupactive", ""), { description = "change active in group" }) bind("SUPER SHIFT", "Tab", dispatch("changegroupactive", "b"), { description = "Change Group Back" }) -bind("SUPER CTRL", "K", dispatch("moveintogroup", "l"), { description = "Move left into group" }) -bind("SUPER CTRL", "L", dispatch("moveintogroup", "r"), { description = "Move Right into group" }) +bind("SUPER CTRL", "J", dispatch("moveintogroup", "l"), { description = "Move left into group" }) bind("SUPER CTRL", "H", dispatch("moveoutofgroup", ""), { description = "Move active out of group" }) bind( "SUPER", |
