mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
* Fix Hyprland 0.53 windowrule syntax breaking changes Hyprland 0.53 introduced breaking changes to windowrule syntax: - Props now use `match:` prefix: `class:pattern` → `match:class pattern` - Boolean effects require `on` suffix: `float` → `float on` - Snake_case naming: `nofocus` → `no_focus`, `stayfocused` → `stay_focused` - `noborder` replaced with `border_size 0` - `noanim` replaced with `animation none` - layerrule syntax: `noanim, X` → `animation none, match:namespace X` - `misc:new_window_takes_over_fullscreen` → `misc:on_focus_under_fullscreen` See: https://github.com/hyprwm/hyprland-wiki/pull/1278 * Correct for the new style * Migrate the scrolltouchpad setting in userland too * Need a reboot to pair with new Hyprland --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# Control your input devices
|
|
# See https://wiki.hypr.land/Configuring/Variables/#input
|
|
input {
|
|
# Use multiple keyboard layouts and switch between them with Left Alt + Right Alt
|
|
# kb_layout = us,dk,eu
|
|
kb_options = compose:caps # ,grp:alts_toggle
|
|
|
|
# Change speed of keyboard repeat
|
|
repeat_rate = 40
|
|
repeat_delay = 600
|
|
|
|
# Start with numlock on by default
|
|
numlock_by_default = true
|
|
|
|
# Increase sensitivity for mouse/trackpad (default: 0)
|
|
# sensitivity = 0.35
|
|
|
|
touchpad {
|
|
# Use natural (inverse) scrolling
|
|
# natural_scroll = true
|
|
|
|
# Use two-finger clicks for right-click instead of lower-right corner
|
|
# clickfinger_behavior = true
|
|
|
|
# Control the speed of your scrolling
|
|
scroll_factor = 0.4
|
|
|
|
# Left-click-and-drag with three fingers
|
|
# drag_3fg = 1
|
|
}
|
|
}
|
|
|
|
# Scroll nicely in the terminal
|
|
windowrule = match:class (Alacritty|kitty), scroll_touchpad 1.5
|
|
windowrule = match:class com.mitchellh.ghostty, scroll_touchpad 0.2
|
|
|
|
# Enable touchpad gestures for changing workspaces
|
|
# See https://wiki.hyprland.org/Configuring/Gestures/
|
|
# gesture = 3, horizontal, workspace
|