Commit | Line | Data |
---|---|---|
3aeeb20d AB |
1 | # |
2 | # bspwm hotkeys | |
3 | # | |
4 | ||
5 | super + alt + Escape | |
6 | bspc quit | |
7 | ||
8 | super + w | |
9 | bspc window -c | |
10 | ||
11 | super + t | |
12 | bspc desktop -l next | |
13 | ||
14 | super + b | |
15 | bspc desktop -B | |
16 | ||
9d273a6b AB |
17 | super + {p,s,f} |
18 | state={pseudo_tiled,floating,fullscreen}; \ | |
19 | bspc query -W -w "focused.$\{state\}" && state=tiled; \ | |
20 | bspc window -t "$state" | |
3aeeb20d AB |
21 | |
22 | super + {grave,Tab} | |
23 | bspc {window,desktop} -f last | |
24 | ||
25 | super + apostrophe | |
26 | bspc window -s last | |
27 | ||
28 | super + {o,i} | |
29 | bspc control --record-history off; \ | |
30 | bspc window {older,newer} -f; \ | |
31 | bspc control --record-history on | |
32 | ||
33 | super + y | |
34 | bspc window -w last.manual | |
35 | ||
36 | super + m | |
37 | bspc window -s biggest | |
38 | ||
39 | super + {_,shift + }{h,j,k,l} | |
40 | bspc window -{f,s} {left,down,up,right} | |
41 | ||
7a226deb | 42 | super + {_,shift + }slash |
3aeeb20d AB |
43 | bspc window -f {next,prev} |
44 | ||
45 | super + {comma,period} | |
46 | bspc desktop -C {backward,forward} | |
47 | ||
48 | super + bracket{left,right} | |
49 | bspc desktop -f {prev,next} | |
50 | ||
896820db AB |
51 | super + shift + bracket{left,right} |
52 | bspc window -d {prev,next} | |
53 | ||
3aeeb20d AB |
54 | super + ctrl + {h,j,k,l} |
55 | bspc window -p {left,down,up,right} | |
56 | ||
57 | super + ctrl + {_,shift + }space | |
58 | bspc {window -p cancel,desktop -c} | |
59 | ||
60 | super + alt + {h,j,k,l} | |
61 | bspc window -e {left -10,down +10,up -10,right +10} | |
62 | ||
63 | super + alt + shift + {h,j,k,l} | |
64 | bspc window -e {right -10,up +10,down -10,left +10} | |
65 | ||
66 | super + ctrl + {1-9} | |
67 | bspc window -r 0.{1-9} | |
68 | ||
69 | super + {_,shift + }{1-9,0} | |
70 | bspc {desktop -f,window -d} ^{1-9,10} | |
71 | ||
72 | ~button1 | |
73 | bspc pointer -g focus | |
74 | ||
75 | super + button{1-3} | |
76 | bspc pointer -g {move,resize_side,resize_corner} | |
77 | ||
78 | super + !button{1-3} | |
79 | bspc pointer -t %i %i | |
80 | ||
81 | super + @button{1-3} | |
82 | bspc pointer -u | |
83 | ||
84 | # | |
85 | # wm independent hotkeys | |
86 | # | |
87 | ||
88 | super + Return | |
89 | urxvt | |
90 | ||
91 | super + space | |
ef452153 | 92 | rofi -show run -font "Source Code Pro 11" -fg "#195465" -bg "#0A0F14" -hlfg "#EDB54B" -hlbg "#0A0F14" -o 85 |
d6e35f6a AB |
93 | |
94 | super + x | |
95 | slimlock | |
3aeeb20d | 96 | |
5ece0347 | 97 | super + e |
15eb709f | 98 | emacs |
5ece0347 AB |
99 | |
100 | super + r | |
dcbfb16d | 101 | firefox |
5ece0347 | 102 | |
7a226deb | 103 | super + c |
ee3e7188 | 104 | chromium -incognito |
7a226deb | 105 | |
3aeeb20d AB |
106 | # make sxhkd reload its configuration files: |
107 | super + Escape | |
108 | pkill -USR1 -x sxhkd | |
109 | ||
dcbfb16d AB |
110 | #XF86MonBrightnessDown |
111 | # xbacklight -dec 5 | |
3aeeb20d | 112 | |
dcbfb16d AB |
113 | #XF86MonBrightnessUp |
114 | # xbacklight -inc 5 | |
3aeeb20d | 115 | |
dcbfb16d AB |
116 | # XF86KbdBrightnessDown |
117 | #kbdlight down | |
3aeeb20d | 118 | |
dcbfb16d AB |
119 | # XF86KbdBrightnessUp |
120 | #kbdlight up | |
3aeeb20d | 121 | |
d760033f AB |
122 | #XF86AudioRaiseVolume |
123 | # pulseaudio-ctl up | |
78856df8 | 124 | |
d760033f AB |
125 | #XF86AudioLowerVolume |
126 | # pulseaudio-ctl down | |
78856df8 | 127 | |
d760033f AB |
128 | #XF86AudioMute |
129 | # pulseaudio-ctl mute | |
78856df8 | 130 | |
a341f8e4 AB |
131 | XF86AudioPlay |
132 | mpc toggle | |
133 | ||
134 | XF86AudioPrev | |
135 | mpc prev | |
136 | ||
137 | XF86AudioNext | |
138 | mpc next | |
139 | ||
d760033f | 140 | XF86AudioRaiseVolume |
5c899f1f | 141 | pamixer --allow-boost --increase 5 |
8c17e1b6 | 142 | |
d760033f | 143 | XF86AudioLowerVolume |
5c899f1f | 144 | pamixer --allow-boost --decrease 5 |
8c17e1b6 | 145 | |
d760033f | 146 | XF86AudioMute |
5c899f1f | 147 | pamixer --toggle-mute |
ed5099ff AB |
148 | |
149 | XF86LaunchA | |
dcbfb16d | 150 | toggle-layout |
a8a12804 AB |
151 | |
152 | XF86LaunchB | |
153 | toggle-mouse |