add horizontal scrolling
This commit is contained in:
parent
e1c8103a8b
commit
f06fb941c4
1 changed files with 14 additions and 0 deletions
|
@ -6,6 +6,14 @@
|
|||
#$mainMod = SUPER # Sets "Windows" key as main modifier
|
||||
$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
|
||||
|
||||
# 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 = ,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
|
||||
bindl = , XF86AudioNext, exec, playerctl next
|
||||
bindl = , XF86AudioPause, exec, playerctl play-pause
|
||||
|
|
Loading…
Add table
Reference in a new issue