75 lines
2.5 KiB
Plaintext
75 lines
2.5 KiB
Plaintext
# https://wiki.hyprland.org/Configuring/Binds/
|
|
|
|
$terminal = alacritty
|
|
$files = thunar
|
|
$menu = rofi -show drun -config ~/.config/rofi/config.rasi
|
|
$browser = brave
|
|
$code = code
|
|
$lock = hyprlock
|
|
$color_picker = hyprpicker -a -f hex -r -n -q
|
|
|
|
$mainMod = SUPER
|
|
|
|
# Programs
|
|
bind = $mainMod, E, exec, $files
|
|
bind = $mainMod, R, exec, $menu
|
|
bind = $mainMod, B, exec, $browser
|
|
bind = $mainMod, L, exec, $lock
|
|
bind = $mainMod, C, exec, $code
|
|
bind = $mainMod SHIFT, C, exec, $color_picker
|
|
bind = $mainMod, RETURN, exec, $terminal
|
|
bind = $mainMod SHIFT, E, exit
|
|
|
|
# Window control
|
|
bind = $mainMod, Q, killactive,
|
|
bind = $mainMod SHIFT, E, exit,
|
|
bind = $mainMod, W, togglefloating,
|
|
bind = $mainMod, F, fullscreen,
|
|
|
|
# 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
|
|
|
|
plugin {
|
|
split-monitor-workspaces {
|
|
count = 3
|
|
keep_focused = 0
|
|
enable_notifications = 1
|
|
enable_persistent_workspaces = 1
|
|
}
|
|
}
|
|
|
|
$mainMod = SUPER
|
|
# Switch workspaces with mainMod + [0-5]
|
|
bind = $mainMod, 1, split-workspace, 1
|
|
bind = $mainMod, 2, split-workspace, 2
|
|
bind = $mainMod, 3, split-workspace, 3
|
|
bind = $mainMod, 4, split-workspace, 4
|
|
bind = $mainMod, 5, split-workspace, 5
|
|
|
|
# Move active window to a workspace with mainMod + SHIFT + [0-5]
|
|
bind = $mainMod SHIFT, 1, split-movetoworkspacesilent, 1
|
|
bind = $mainMod SHIFT, 2, split-movetoworkspacesilent, 2
|
|
bind = $mainMod SHIFT, 3, split-movetoworkspacesilent, 3
|
|
bind = $mainMod SHIFT, 4, split-movetoworkspacesilent, 4
|
|
bind = $mainMod SHIFT, 5, split-movetoworkspacesilent, 5
|
|
|
|
# Move/resize windows with mainMod + LMB/RMB and dragging
|
|
bindm = $mainMod, mouse:272, movewindow
|
|
bindm = $mainMod, mouse:273, resizewindow
|
|
|
|
# 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 s 10%+
|
|
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 10%-
|
|
|
|
# Requires playerctl
|
|
bindl = , XF86AudioNext, exec, playerctl next
|
|
bindl = , XF86AudioPause, exec, playerctl play-pause
|
|
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
|
bindl = , XF86AudioPrev, exec, playerctl previous |