-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.xbindkeysrc
executable file
·127 lines (102 loc) · 2.25 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
###########################
# xbindkeys configuration #
###########################
#
# Version: 0.1.3
#
# If you edit this, do not forget to uncomment any lines that you change.
# The pound(#) symbol may be used anywhere for comments.
#
# A list of keys is in /usr/include/X11/keysym.h and in
# /usr/include/X11/keysymdef.h
# The XK_ is not needed.
#
# List of modifier (on my keyboard):
# Control, Shift, Mod1 (Alt), Mod2 (NumLock),
# Mod3 (CapsLock), Mod4, Mod5 (Scroll).
#
# Another way to specifie a key is to use 'xev' and set the
# keycode with c:nnn or the modifier with m:nnn where nnn is
# the keycode or the state returned by xev
#
# This file is created by xbindkey_config
# The structure is :
# # Remark
# "command"
# m:xxx + c:xxx
# Shift+...
#keystate_numlock = enable
#keystate_scrolllock = enable
#keystate_capslock = enable
"xbindkeys_show"
control+shift + q
#brightness up
"xbacklight -inc 5"
m:0x0 + c:233
XF86MonBrightnessUp
#brightness down
"xbacklight -dec 5"
m:0x0 + c:232
XF86MonBrightnessDown
#brightness 0
"xbacklight -set 0"
m:0x0 + c:253
XF86DisplayOff
#mic mute toggle
"pactl set-source-mute @DEFAULT_SOURCE@ toggle"
m:0xc + c:58
Control+Alt + m
#mic volume inc
"pactl set-source-volume @DEFAULT_SOURCE@ +1%"
m:0xc + c:111
Control+Alt + Up
#mic vol dec
"pactl set-source-volume @DEFAULT_SOURCE@ -1%"
m:0xc + c:116
Control+Alt + Down
#player pause/play
"playerctl play-pause"
m:0x0 + c:172
XF86AudioPlay
#player prev
"playerctl previous"
m:0x0 + c:173
XF86AudioPrev
#player next
"playerctl next"
m:0x0 + c:171
XF86AudioNext
#player stop
"playerctl stop"
m:0x0 + c:174
XF86AudioStop
#toggle eq
"pulseaudio-equalizer toggle"
m:0xc + c:26
Control+Alt + e
#Flameshot gui
"flameshot gui"
m:0x0 + c:107
Print
#lock
"lxlock"
m:0x40 + c:22
Mod4 + BackSpace
#lock and sleep
"lxlock && systemctl suspend"
m:0x44 + c:22
Control+Mod4 + BackSpace
#Notifications show
"dunstctl history-pop"
m:0x40 + c:49
Mod4 + grave
#Notification close
"dunstctl close"
m:0x40 + c:21
Mod4 + equal
#Notification close-all
"dunstctl close-all"
m:0x41 + c:21
Shift+Mod4 + equal
#
# End of xbindkeys configuration