dotfiles/config/bspwm/sxhkd (view raw)
| 1 | # Smirnov-O <ss2316544@gmail.com> |
| 2 | # BSPWM/SXKBD config file |
| 3 | |
| 4 | ## == USER keys |
| 5 | super + {_,shift} Return |
| 6 | {kitty, rofi -show drun -theme ntenV2} |
| 7 | |
| 8 | super + shift + {w, e, f, c, s, t, q} |
| 9 | {google-chrome-stable, \ |
| 10 | kitty --class nvim -e nvim, \ |
| 11 | kitty --class ranger -e ranger, \ |
| 12 | code, \ |
| 13 | .applications/simplenote.appimage, \ |
| 14 | .applications/todoist.appimage, \ |
| 15 | xkill } |
| 16 | |
| 17 | {_,shift,ctrl} Print |
| 18 | {scrot -s, scrot, scrot -u} |
| 19 | |
| 20 | super + {equal, minus, shift+minus} |
| 21 | amixer sset Master {2%+,2%-,toggle} |
| 22 | |
| 23 | super + {Escape, ctrl+i} |
| 24 | {.config/rofi/script/powermenu.sh, \ |
| 25 | .config/rofi/script/passmenu.sh } |
| 26 | |
| 27 | ### == BSPWM keys |
| 28 | super + q |
| 29 | bspc node -c |
| 30 | |
| 31 | alt + F4 |
| 32 | bspc node -c |
| 33 | |
| 34 | super + control + r |
| 35 | bspc wm -r \ |
| 36 | && pkill sxhkd \ |
| 37 | && sxhkd -c ~/.config/bspwm/sxhkd |
| 38 | |
| 39 | ### == BSPWM windows |
| 40 | super + {_,shift + } {h,j,k,l} |
| 41 | bspc node -{f,s} {west,south,north,east} |
| 42 | |
| 43 | super + ctrl + {h,j,k,l} |
| 44 | bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0} |
| 45 | |
| 46 | ### === BSPWM window preselect |
| 47 | super + alt + {h,j,k,l} |
| 48 | bspc node -p {west,south,north,east} |
| 49 | |
| 50 | super + alt + {1-9} |
| 51 | bspc node -o 0.{1-9} |
| 52 | |
| 53 | super + alt + {space,0} |
| 54 | bspc node -p cancel |
| 55 | |
| 56 | ## == BSPWM workspace |
| 57 | super + {_,shift + }{1-9} |
| 58 | bspc {desktop -f,node -d} focused:'^{1-9}' |
| 59 | |
| 60 | ## == BSPWM window layouts |
| 61 | super + shift + {Tab, F11} |
| 62 | bspc node -t {floating,fullscreen} |
| 63 | |
| 64 | super + Tab |
| 65 | bspc node -t tiled |
| 66 | |
| 67 | # vim: ft=sxhkdrc |