Files
omarchy/default/hypr/bindings.conf

109 lines
3.9 KiB
Plaintext
Raw Normal View History

2025-06-09 16:06:33 +02:00
# Start default apps
2025-06-01 20:46:01 +02:00
bind = SUPER, return, exec, $terminal
bind = SUPER, F, exec, $fileManager
bind = SUPER, B, exec, $browser
2025-06-09 16:06:33 +02:00
bind = SUPER, M, exec, $music
bind = SUPER, N, exec, $terminal -e nvim
bind = SUPER, T, exec, $terminal -e btop
2025-06-23 12:30:13 -04:00
bind = SUPER, D, exec, $terminal -e lazydocker
2025-06-17 09:54:02 +02:00
bind = SUPER, G, exec, $messenger
2025-06-22 20:47:18 -04:00
bind = SUPER, O, exec, obsidian -disable-gpu
2025-06-17 09:54:02 +02:00
bind = SUPER, slash, exec, $passwordManager
2025-06-01 11:21:00 +02:00
2025-06-01 20:46:01 +02:00
bind = SUPER, space, exec, $menu
2025-06-09 16:06:33 +02:00
bind = SUPER SHIFT, SPACE, exec, pkill -SIGUSR1 waybar
bind = SUPER CTRL, SPACE, exec, ~/.local/share/omarchy/bin/swaybg-next
2025-06-18 22:00:55 +02:00
bind = SUPER SHIFT CTRL, SPACE, exec, ~/.local/share/omarchy/bin/omarchy-theme-next
2025-06-09 16:06:33 +02:00
2025-06-01 20:46:01 +02:00
bind = SUPER, W, killactive,
2025-06-09 16:06:33 +02:00
# End active session
bind = SUPER, ESCAPE, exec, hyprlock
bind = SUPER SHIFT, ESCAPE, exit,
bind = SUPER SHIFT CTRL, ESCAPE, exec, reboot
2025-06-01 11:21:00 +02:00
2025-06-09 16:06:33 +02:00
# Control tiling
2025-06-01 20:46:01 +02:00
bind = SUPER, J, togglesplit, # dwindle
bind = SUPER, P, pseudo, # dwindle
bind = SUPER, V, togglefloating,
2025-06-01 11:21:00 +02:00
# Move focus with mainMod + arrow keys
2025-06-01 20:46:01 +02:00
bind = SUPER, left, movefocus, l
bind = SUPER, right, movefocus, r
bind = SUPER, up, movefocus, u
bind = SUPER, down, movefocus, d
2025-06-01 11:21:00 +02:00
# Switch workspaces with mainMod + [0-9]
2025-06-01 20:46:01 +02:00
bind = SUPER, 1, workspace, 1
bind = SUPER, 2, workspace, 2
bind = SUPER, 3, workspace, 3
bind = SUPER, 4, workspace, 4
bind = SUPER, 5, workspace, 5
bind = SUPER, 6, workspace, 6
bind = SUPER, 7, workspace, 7
bind = SUPER, 8, workspace, 8
bind = SUPER, 9, workspace, 9
bind = SUPER, 0, workspace, 10
2025-06-01 11:21:00 +02:00
# Move active window to a workspace with mainMod + SHIFT + [0-9]
2025-06-01 20:46:01 +02:00
bind = SUPER SHIFT, 1, movetoworkspace, 1
bind = SUPER SHIFT, 2, movetoworkspace, 2
bind = SUPER SHIFT, 3, movetoworkspace, 3
bind = SUPER SHIFT, 4, movetoworkspace, 4
bind = SUPER SHIFT, 5, movetoworkspace, 5
bind = SUPER SHIFT, 6, movetoworkspace, 6
bind = SUPER SHIFT, 7, movetoworkspace, 7
bind = SUPER SHIFT, 8, movetoworkspace, 8
bind = SUPER SHIFT, 9, movetoworkspace, 9
bind = SUPER SHIFT, 0, movetoworkspace, 10
2025-06-01 11:21:00 +02:00
# Swap active window with the one next to it with mainMod + SHIFT + arrow keys
2025-06-01 20:46:01 +02:00
bind = SUPER SHIFT, left, swapwindow, l
bind = SUPER SHIFT, right, swapwindow, r
bind = SUPER SHIFT, up, swapwindow, u
bind = SUPER SHIFT, down, swapwindow, d
2025-06-01 11:21:00 +02:00
2025-06-09 16:20:29 +02:00
# Resize active window
bind = SUPER, minus, resizeactive, -100 0
bind = SUPER, equal, resizeactive, 100 0
bind = SUPER SHIFT, minus, resizeactive, 0 -100
bind = SUPER SHIFT, equal, resizeactive, 0 100
2025-06-01 11:21:00 +02:00
# Scroll through existing workspaces with mainMod + scroll
2025-06-01 20:46:01 +02:00
bind = SUPER, mouse_down, workspace, e+1
bind = SUPER, mouse_up, workspace, e-1
2025-06-01 11:21:00 +02:00
# Move/resize windows with mainMod + LMB/RMB and dragging
2025-06-01 20:46:01 +02:00
bindm = SUPER, mouse:272, movewindow
bindm = SUPER, mouse:273, resizewindow
2025-06-01 11:21:00 +02:00
# Laptop multimedia keys for volume and LCD brightness
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+
bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle
bindel = ,XF86MonBrightnessUp, exec, brightnessctl -e4 -n2 set 5%+
bindel = ,XF86MonBrightnessDown, exec, brightnessctl -e4 -n2 set 5%-
# Control Apple Display brightness
bind = CTRL, F1, exec, ~/.local/share/omarchy/bin/apple-display-brightness -5000
bind = CTRL, F2, exec, ~/.local/share/omarchy/bin/apple-display-brightness +5000
bind = SHIFT CTRL, F2, exec, ~/.local/share/omarchy/bin/apple-display-brightness +60000
2025-06-01 11:21:00 +02:00
# Requires playerctl
bindl = , XF86AudioNext, exec, playerctl next
bindl = , XF86AudioPause, exec, playerctl play-pause
bindl = , XF86AudioPlay, exec, playerctl play-pause
bindl = , XF86AudioPrev, exec, playerctl previous
2025-06-01 15:14:23 +02:00
# Screenshots
bind = , PRINT, exec, hyprshot -m region
bind = SHIFT, PRINT, exec, hyprshot -m window
2025-06-09 18:50:14 +02:00
bind = CTRL, PRINT, exec, hyprshot -m output
2025-06-17 21:37:20 +02:00
2025-06-18 21:50:49 +02:00
# Color picker
bind = SUPER, PRINT, exec, hyprpicker -a
2025-06-17 21:37:20 +02:00
# Clipse
bind = CTRL SUPER, V, exec, alacritty --class clipse -e clipse