✨ feat(hypr): add swayosd bindings and changed some existing ones
This commit is contained in:
parent
2be2cba7dc
commit
089cc7a730
3 changed files with 38 additions and 17 deletions
|
@ -161,19 +161,28 @@ submap = reset
|
|||
|
||||
## Audio
|
||||
bind = SUPERCTRL, V, exec, restartAudio
|
||||
bind = ,XF86AudioPlay, exec, playerctl play-pause
|
||||
bindl = SUPERCTRL, mouse:274, exec,playerctl play-pause
|
||||
bind = ,XF86AudioPrev, exec, playerctl previous
|
||||
bindl = SUPERCTRL, mouse_up, exec, playerctl previous
|
||||
bind = ,XF86AudioNext, exec, playerctl next
|
||||
bindl = SUPERCTRL, mouse_down, exec, playerctl next
|
||||
|
||||
bindl = , XF86AudioMedia, exec, playerctl play-pause
|
||||
bindl = , XF86AudioStop, exec, playerctl stop
|
||||
bindle = , XF86AudioRaiseVolume, exec, swayosd --output-volume raise
|
||||
bindle = , XF86AudioLowerVolume, exec, swayosd --output-volume lower
|
||||
bindle = , XF86AudioMute, exec, swayosd --output-volume mute-toggle
|
||||
bindle = , XF86AudioMicMute, exec, exec swayosd --input-volume mute-toggle
|
||||
bindl = SUPERCTRL, mouse:280, exec, swayosd-client --output-volume mute-toggle # Extra Up Button
|
||||
bindl = , XF86AudioMute, exec, swayosd-client --output-volume mute-toggle
|
||||
bindl = SUPERCTRL, mouse:281, exec, swayosd-client --input-volume mute-toggle # Extra Down Button
|
||||
bindl = , XF86AudioMicMute, exec, exec swayosd-client --input-volume mute-toggle
|
||||
|
||||
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||
bindl = SUPERCTRL, mouse:282, exec, playerctl play-pause # Extra Center Button
|
||||
bindl = , XF86AudioPrev, exec, playerctl previous
|
||||
bindl = SUPERCTRL, mouse:275, exec, playerctl previous # Extra Back Button
|
||||
bindl = , XF86AudioNext, exec, playerctl next
|
||||
bindl = SUPERCTRL, mouse:276, exec, playerctl next # Extra Forward Button
|
||||
|
||||
bindle = , XF86AudioRaiseVolume, exec, swayosd-client --output-volume raise
|
||||
bindle = SUPERCTRL, 21, exec, swayosd-client --output-volume raise # Minus key
|
||||
bindle = , XF86AudioLowerVolume, exec, swayosd-client --output-volume lower
|
||||
bindle = SUPERCTRL, 20, exec, swayosd-client --output-volume lower # Plus key
|
||||
|
||||
bindle = , XF86InputRaiseVolume, exec, swayosd-client --input-volume raise
|
||||
bindle = SUPERSHIFT, 21, exec, swayosd-client --input-volume raise # Minus key
|
||||
bindle = , XF86InputLowerVolume, exec, swayosd-client --input-volume lower
|
||||
bindle = SUPERSHIFT, 20, exec, swayosd-client --input-volume lower # Plus key
|
||||
|
||||
# Disable anim, blur, etc
|
||||
bind = SUPER, F12, exec, ~/.config/hypr/scripts/performance
|
||||
|
|
|
@ -18,7 +18,7 @@ swww init
|
|||
waybar &
|
||||
|
||||
# OSD Window
|
||||
swayosd &
|
||||
swayosd-server &
|
||||
|
||||
# Automounter for removable media
|
||||
udiskie &
|
||||
|
|
|
@ -102,14 +102,26 @@
|
|||
|
||||
- name: Audio
|
||||
keybinds:
|
||||
- name: Play-Pause Music
|
||||
key: Ctrl + Win + Middle Mouse Button
|
||||
- name: Play-Pause Song
|
||||
key: Ctrl + Win + Mouse Extra Middle Button
|
||||
- name: Play Previous Song
|
||||
key: Ctrl + Win + Mouse Wheel Down
|
||||
key: Ctrl + Win + Mouse Backward Button
|
||||
- name: Play Next Song
|
||||
key: Ctrl + Win + Mouse Wheel Up
|
||||
key: Ctrl + Win + Mouse Forward Button
|
||||
- name: Toggle Output Mute
|
||||
key: Ctrl + Win + Mouse Extra Up Button
|
||||
- name: Toggle Input Mute
|
||||
key: Ctrl + Win + Mouse Extra Down Button
|
||||
- name: Restart Audio
|
||||
key: Ctrl + Win + V
|
||||
- name: Output Volume Up
|
||||
key: Ctrl + Win + Plus Sign
|
||||
- name: Output Volume Down
|
||||
key: Ctrl + Win + Minus Sign
|
||||
- name: Input Volume Up
|
||||
key: Win + Shift + Plus Sign
|
||||
- name: Input Volume Down
|
||||
key: Win + Shift + Minus Sign
|
||||
|
||||
- name: Screenshots
|
||||
keybinds:
|
||||
|
|
Loading…
Add table
Reference in a new issue