-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxbindkeysrc
39 lines (30 loc) · 934 Bytes
/
xbindkeysrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Increase volume 5% with Apple volume up
"pactl set-sink-volume @DEFAULT_SINK@ +5%"
XF86AudioRaiseVolume
# Decrease volume 5% with Apple volume down
"pactl set-sink-volume @DEFAULT_SINK@ -5%"
XF86AudioLowerVolume
# Mute with Mod4+m.
"pactl set-sink-mute @DEFAULT_SINK@ toggle"
Mod4+0
# Increase volume 5% with Mod4+Up
"pactl set-sink-volume @DEFAULT_SINK@ +5%"
Mod4+Up
# Decrease volume 5% with Mod4+Down.
"pactl set-sink-volume @DEFAULT_SINK@ -5%"
Mod4+Down
# Mute with Apple mute
"pactl set-sink-mute @DEFAULT_SINK@ toggle"
XF86AudioMute
# Brighten screen
"brightnessctl --device=acpi_video0 set 5%+"
XF86MonBrightnessUp
# Dim screen
"brightnessctl --device=acpi_video0 set 5%-"
XF86MonBrightnessDown
# Brighten keyboard
"brightnessctl --device=smc::kbd_backlight set 5%+"
XF86KbdBrightnessUp
# Dim keyboard
"brightnessctl --device=smc::kbd_backlight set 5%+"
XF86KbdBrightnessDown