add horizontal scrolling

This commit is contained in:
Simon Rieger 2025-07-29 11:50:39 +02:00
parent e1c8103a8b
commit f06fb941c4

View file

@ -6,6 +6,14 @@
#$mainMod = SUPER # Sets "Windows" key as main modifier #$mainMod = SUPER # Sets "Windows" key as main modifier
$mainMod = Alt $mainMod = Alt
binds {
# Minimale Pixel-Distanz, bevor Drag-and-Drop ausgelöst wird
drag_threshold = 10
# Minimale Wartezeit in ms zwischen Scroll-Events, um zu schnelles Wiederholen zu verhindern
scroll_event_delay = 10
}
bind = $mainMod, Tab, hyprexpo:expo, toggle # can be: toggle, off/disable or on/enable bind = $mainMod, Tab, hyprexpo:expo, toggle # can be: toggle, off/disable or on/enable
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more # Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
@ -132,6 +140,12 @@ bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle
bindel = ,XF86MonBrightnessUp, exec, brightnessctl s 10%+ bindel = ,XF86MonBrightnessUp, exec, brightnessctl s 10%+
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 10%- bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 10%-
# Lautstärke 10% erhöhen bei horizontalem Scroll "rechts"
bindl = ,mouse:288, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 10%+
# Lautstärke 10% verringern bei horizontalem Scroll "links"
bindl = ,mouse:287, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 10%-
# Requires playerctl # Requires playerctl
bindl = , XF86AudioNext, exec, playerctl next bindl = , XF86AudioNext, exec, playerctl next
bindl = , XF86AudioPause, exec, playerctl play-pause bindl = , XF86AudioPause, exec, playerctl play-pause