2025-01-11 18:24:49 +01:00
|
|
|
#############
|
|
|
|
### INPUT ###
|
|
|
|
#############
|
|
|
|
|
|
|
|
# https://wiki.hyprland.org/Configuring/Variables/#input
|
|
|
|
input {
|
|
|
|
kb_layout = fr
|
|
|
|
kb_variant =
|
|
|
|
kb_model =
|
|
|
|
kb_options =
|
|
|
|
kb_rules =
|
|
|
|
numlock_by_default = true
|
|
|
|
|
|
|
|
follow_mouse = 1
|
|
|
|
|
2025-01-20 12:53:06 +01:00
|
|
|
sensitivity = 0.1 # -1.0 - 1.0, 0 means no modification.
|
2025-01-11 18:24:49 +01:00
|
|
|
|
|
|
|
touchpad {
|
|
|
|
natural_scroll = true
|
2025-03-03 09:01:51 +01:00
|
|
|
disable_while_typing = false
|
2025-01-11 18:24:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
|
|
|
gestures {
|
|
|
|
workspace_swipe = true
|
|
|
|
}
|
|
|
|
|
|
|
|
# Example per-device config
|
|
|
|
# See https://wiki.hyprland.org/Configuring/Keywords/#per-device-input-configs for more
|
|
|
|
device {
|
|
|
|
name = epic-mouse-v1
|
|
|
|
sensitivity = -0.5
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
###################
|
|
|
|
### KEYBINDINGS ###
|
|
|
|
###################
|
|
|
|
|
|
|
|
# See https://wiki.hyprland.org/Configuring/Keywords/
|
|
|
|
$mainMod = SUPER # Sets "Windows" key as main modifier
|
|
|
|
|
|
|
|
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
|
|
|
bind = $mainMod, RETURN, exec, $terminal
|
2025-01-20 12:53:06 +01:00
|
|
|
bind = $mainMod, SPACE, exec, $terminal
|
2025-01-11 18:24:49 +01:00
|
|
|
bind = $mainMod, Q, killactive,
|
|
|
|
bind = $mainMod SHIFT, M, exit,
|
|
|
|
bind = $mainMod, E, exec, $fileManager
|
|
|
|
bind = $mainMod, T, togglefloating,
|
|
|
|
bind = $mainMod, D, exec, $menu
|
|
|
|
bind = $mainMod, R, exec, $menu
|
|
|
|
bind = $mainMod, H, pseudo, # dwindle
|
|
|
|
bind = $mainMod, V, togglesplit, # dwindle
|
|
|
|
bind = $mainMod, F, fullscreen,
|
|
|
|
bind = $mainMod, L, exec, hyprlock
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# Switch workspaces with mainMod + [0-9]
|
|
|
|
bind = $mainMod, ampersand, workspace, 1
|
|
|
|
bind = $mainMod, eacute, workspace, 2
|
|
|
|
bind = $mainMod, quotedbl, workspace, 3
|
|
|
|
bind = $mainMod, apostrophe, workspace, 4
|
|
|
|
bind = $mainMod, parenleft, workspace, 5
|
|
|
|
bind = $mainMod, minus, workspace, 6
|
|
|
|
bind = $mainMod, egrave, workspace, 7
|
|
|
|
bind = $mainMod, underscore, workspace, 8
|
|
|
|
bind = $mainMod, ccedilla, workspace, 9
|
|
|
|
bind = $mainMod, agrave, workspace, 10
|
|
|
|
|
|
|
|
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
|
|
|
bind = $mainMod SHIFT, ampersand, movetoworkspace, 1
|
|
|
|
bind = $mainMod SHIFT, eacute, movetoworkspace, 2
|
|
|
|
bind = $mainMod SHIFT, quotedbl, movetoworkspace, 3
|
|
|
|
bind = $mainMod SHIFT, apostrophe, movetoworkspace, 4
|
|
|
|
bind = $mainMod SHIFT, parenleft, movetoworkspace, 5
|
|
|
|
bind = $mainMod SHIFT, minus, movetoworkspace, 6
|
|
|
|
bind = $mainMod SHIFT, egrave, movetoworkspace, 7
|
|
|
|
bind = $mainMod SHIFT, underscore, movetoworkspace, 8
|
|
|
|
bind = $mainMod SHIFT, ccedilla, movetoworkspace, 9
|
|
|
|
bind = $mainMod SHIFT, agrave, movetoworkspace, 10
|
|
|
|
|
|
|
|
# Example special workspace (scratchpad)
|
|
|
|
bind = $mainMod, S, togglespecialworkspace, magic
|
|
|
|
bind = $mainMod SHIFT, S, movetoworkspace, special:magic
|
|
|
|
|
2025-03-03 09:01:51 +01:00
|
|
|
# Minimize function (uses scratchpad)
|
|
|
|
# For testing, may be removed in future releases
|
|
|
|
bind = $mainMod, N, togglespecialworkspace, magic
|
|
|
|
bind = $mainMod, N, movetoworkspace, +0
|
|
|
|
bind = $mainMod, N, togglespecialworkspace, magic
|
|
|
|
bind = $mainMod, N, movetoworkspace, special:magic
|
|
|
|
bind = $mainMod, N, togglespecialworkspace, magic
|
|
|
|
|
2025-01-11 18:24:49 +01:00
|
|
|
# Scroll through existing workspaces with mainMod + scroll
|
|
|
|
bind = $mainMod, mouse_down, workspace, e+1
|
|
|
|
bind = $mainMod, mouse_up, workspace, e-1
|
|
|
|
|
|
|
|
# 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 6%+
|
|
|
|
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 6%-
|
|
|
|
bindel = SHIFT, XF86MonBrightnessUp, exec, brightnessctl s 2%+
|
|
|
|
bindel = SHIFT, XF86MonBrightnessDown, exec, brightnessctl s 2%-
|
|
|
|
|
2025-03-03 09:01:51 +01:00
|
|
|
# (Requires playerctl)
|
2025-01-11 18:24:49 +01:00
|
|
|
bindl = , XF86AudioNext, exec, playerctl next
|
|
|
|
bindl = , XF86AudioPause, exec, playerctl play-pause
|
|
|
|
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
|
|
|
bindl = , XF86AudioPrev, exec, playerctl previous
|
|
|
|
|
2025-03-03 09:01:51 +01:00
|
|
|
# Function keys
|
|
|
|
|
|
|
|
# Settings
|
|
|
|
bindel = , XF86Launch1, exec, kitty vim ~/.config/hypr/config
|
2025-01-11 18:24:49 +01:00
|
|
|
# Screenshot
|
2025-01-20 12:53:06 +01:00
|
|
|
bind = , Print, exec, ~/.config/hypr/scripts/screenshot.sh
|
2025-03-03 09:01:51 +01:00
|
|
|
# Touchpad toggle
|
|
|
|
# (On galaxy books, pressing the disable touchpad key also triggers SUPER and CONTROL keys, this is why there are present here)
|
|
|
|
bind = SUPER CONTROL, XF86TouchpadToggle, exec, ~/.config/hypr/scripts/toggle-touchpad.sh
|
|
|
|
|
|
|
|
# Desktop related shortcuts
|
2025-01-11 18:24:49 +01:00
|
|
|
|
|
|
|
# Toggle waybar
|
2025-01-20 12:53:06 +01:00
|
|
|
bind = $mainMod, B, exec, ~/.config/hypr/scripts/toggle-waybar.sh
|
2025-01-11 18:24:49 +01:00
|
|
|
|
|
|
|
# Reload desktop
|
2025-01-20 12:53:06 +01:00
|
|
|
bind = $mainMod SHIFT, R, exec, ~/.config/hypr/scripts/reload.sh
|
2025-03-03 09:01:51 +01:00
|
|
|
|
|
|
|
# Gamemode
|
|
|
|
bind = $mainMod, F11, exec, ~/.config/hypr/scripts/gamemode.sh
|