SEB-Patcher/private_dot_config/hypr/keybinds.conf
2025-03-11 12:25:41 +01:00

113 lines
No EOL
5.3 KiB
Text

###################
### KEYBINDINGS ###
###################
# Documentation: https://wiki.hyprland.org/Configuring/Binds/
# See https://wiki.hyprland.org/Configuring/Keywords/
$mainMod = SUPER # Sets "Windows" key as main modifier
# WM BINDS:
# Keybinds related to Hyprland itself.
bind = $mainMod CTRL, E, exit, # Exit session.
# APPLICATION BINDS:
# Keybinds related to launching applications.
bind = $mainMod, Return, exec, $terminal # New terminal.
bind = $mainMod, B, exec, $browser # New browser.
bind = $mainMod, E, exec, [float] $fileManager # File explorer.
bind = $mainMod, W, exec, $menu # App launcher.
# WINDOW BINDS:
# Keybinds related to operating on a window.
bind = $mainMod SHIFT, Q, killactive, # Kill active window.
bind = $mainMod, F, fullscreen # Toggle fullscreen on active window.
bind = $mainMod, SPACE, togglefloating, # Toggle floating on active window.
bind = $mainMod, P, pseudo, # Toggle pseudo-tiling on active window.
bind = $mainMod, J, togglesplit, # Toggle splits on active window.
bind = $mainMod SHIFT, left, movewindow, l # Move active window left.
bind = $mainMod SHIFT, right, movewindow, r # Move active window right.
bind = $mainMod SHIFT, up, movewindow, u # Move active window up.
bind = $mainMod SHIFT, down, movewindow, d # Move active window down.
bindm = $mainMod, mouse:272, movewindow # Move window on mainMod+leftclick-drag.
bindm = $mainMod, mouse:273, resizewindow # Resize window on mainMod+rightclick-drag.
# WINDOW-GROUP BINDS:
# Keybinds related to the grouping of windows.
bind = $mainMod, G, togglegroup, # Create group from window or dissolve existing group.
bind = $mainMod SHIFT, G, moveoutofgroup # Move active window out of group.
# bind = $mainMod CTRL, left, moveintogroup, l # Move active window into group on the left.
# bind = $mainMod CTRL, right, moveintogroup, r # Move active window into group on the right.
# bind = $mainMod CTRL, up, moveintogroup, u # Move active window into group above.
# bind = $mainMod CTRL, down, moveintogroup, d # Move active window into group below.
# Move active window into a group if there is a one in the given direction.
# Moves window out of a group if there is no group in the given direction relative to the active group.
# Otherwise behaves like a normal window move.
bind = $mainMod CTRL, left, movewindoworgroup, l # -- || -- left
bind = $mainMod CTRL, right, movewindoworgroup, r # -- || -- right
bind = $mainMod CTRL, up, movewindoworgroup, u # -- || -- up
bind = $mainMod CTRL, down, movewindoworgroup, d # -- || -- down
# FOCUS BINDS:
# Keybinds related to window focus.
#Move focus with mainMod + arrow keys.
bind = $mainMod, left, movefocus, l
bind = $mainMod, right, movefocus, r
bind = $mainMod, up, movefocus, u
bind = $mainMod, down, movefocus, d
# WORKSPACE BINDS:
# Keybinds related to workspaces.
# Switch workspaces with mainMod + [0-9]
bind = $mainMod, 1, workspace, 1
bind = $mainMod, 2, workspace, 2
bind = $mainMod, 3, workspace, 3
bind = $mainMod, 4, workspace, 4
bind = $mainMod, 5, workspace, 5
bind = $mainMod, 6, workspace, 6
bind = $mainMod, 7, workspace, 7
bind = $mainMod, 8, workspace, 8
bind = $mainMod, 9, workspace, 9
bind = $mainMod, 0, workspace, 10
# Move active window to a workspace with mainMod + SHIFT + [0-9].
bind = $mainMod SHIFT, 1, movetoworkspacesilent, 1
bind = $mainMod SHIFT, 2, movetoworkspacesilent, 2
bind = $mainMod SHIFT, 3, movetoworkspacesilent, 3
bind = $mainMod SHIFT, 4, movetoworkspacesilent, 4
bind = $mainMod SHIFT, 5, movetoworkspacesilent, 5
bind = $mainMod SHIFT, 6, movetoworkspacesilent, 6
bind = $mainMod SHIFT, 7, movetoworkspacesilent, 7
bind = $mainMod SHIFT, 8, movetoworkspacesilent, 8
bind = $mainMod SHIFT, 9, movetoworkspacesilent, 9
bind = $mainMod SHIFT, 0, movetoworkspacesilent, 10
# Special workspace (scratchpad).
bind = $mainMod, S, togglespecialworkspace, magic
bind = $mainMod SHIFT, S, movetoworkspace, special:magic
# Scroll through existing workspaces with mainMod + scroll.
bind = $mainMod, mouse_down, workspace, e+1
bind = $mainMod, mouse_up, workspace, e-1
# MULTIMEDIA BINDS:
# Keybinds related to the multimedia keys often found on laptops.
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+ # Increase audio volume by 5%.
bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- # Decrease audio volume by 5%
bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle # (un)Mute default audio sink.
bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle # (un)Mute default audio source.
bindel = ,XF86MonBrightnessUp, exec, brightnessctl s 10%+ # Increase screen brightness by 10%.
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 10%- # Decrease screen brightness by 10%.
bindl = , XF86AudioNext, exec, playerctl next # Skip to next media in queue.
bindl = , XF86AudioPause, exec, playerctl play-pause # (un)Pause current media.
bindl = , XF86AudioPlay, exec, playerctl play-pause # (un)Pause current media.
bindl = , XF86AudioPrev, exec, playerctl previous # Play previous media.