From 5d1a5573fe6c5a80e523979a3b725eff0913065e Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Thu, 12 Feb 2015 19:48:26 +0100 Subject: add bspwm and sxhkd confs --- config/sxhkd/sxhkdrc | 200 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 200 insertions(+) create mode 100644 config/sxhkd/sxhkdrc (limited to 'config/sxhkd/sxhkdrc') diff --git a/config/sxhkd/sxhkdrc b/config/sxhkd/sxhkdrc new file mode 100644 index 0000000..e3340f9 --- /dev/null +++ b/config/sxhkd/sxhkdrc @@ -0,0 +1,200 @@ +# +# bspwm hotkeys +# + +grave ; shift + c + ~/.ratpoison/wp change + +grave ; f + ~/.ratpoison/spotlight + +grave ; alt + Escape + bspc quit + +grave ; x + bspc window -c + +grave ; X + bspc window -k + +grave ; t + bspc desktop -l next + +grave ; b + bspc desktop -B + +grave ; {u,U,o} + bspc window -t {floating,pseudo_tiled,fullscreen} + +grave ; {grave,Tab} + bspc {window,desktop} -f last + +grave ; apostrophe + bspc window -s last + +#grave ; {o,i} +# bspc control --record-history off; \ +# bspc window {older,newer} -f; \ +# bspc control --record-history on + +#grave ; y +# bspc window -w last.manual + +grave ; m + bspc window -s biggest + +grave ; {h,j,k,l} + bspc window -f {left,down,up,right} + +grave ; c; {h,j,k,l} + bspc window -s {left,down,up,right} + +#grave ; {_,shift + }c +# bspc window -f {next,prev} + +grave ; {comma,period} + bspc desktop -C {backward,forward} + +grave ; bracket{left,right} + bspc desktop -f {prev,next} + +grave ; s ; {h,j,k,l} + bspc window -p {left,down,up,right} + +grave ; ctrl + {_,shift + }space + bspc {window -p cancel,desktop -c} + +hyper + {h,j,k,l} + bspc window -e {left -10,down +10,up -10,right +10} + +hyper + alt + {h,j,k,l} + bspc window -e {right -10,up +10,down -10,left +10} + +grave ; {1-9} + bspc window -f {1-9} + + +grave ; ctrl + {1-9} + bspc window -r 0.{1-9} + +{_,alt + }{F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12} + bspc {desktop -f,window -d} ^{1-9,10,11,12} +{_,alt + } shift + F12 + bspc {desktop -f,window -d} ^13 + +~button1 + bspc pointer -g focus + +hyper + button{1-3} + bspc pointer -g {move,resize_side,resize_corner} + +# Move floating windows (requires baskerville's xdo pacacur -S xdo-git) +alt + {h,l,k,j} + xdo move {-x -20,-x +20,-y -20,-y +20} + +# Resize floating windows +alt + shift + {h,l,k,j} + xdo resize {-w -20,-w +20,-h -20,-h +20} + +grave ; !button{1-3} + bspc pointer -t %i %i + +grave ; @button{1-3} + bspc pointer -u + +# +# wm independent hotkeys +# + +grave ; i + xdotool key shift+Insert + +grave ; space + urxvt + +grave ; slash + ~/.ratpoison/create_frame + +super + u + uzbl-tabbed + +super + f + firefox + +super + s + skype + +super + shift + L + i3lock -n -i ~/.wallpaper.png -z + + +# +# Clipboard hotkeys +# + +grave ; p ; {1-9} + ~/.ratpoison/clipboard paste {1-9} + +grave ; p ; p + ~/.ratpoison/clipboard menu_paste + +grave ; p ; u + ~/.ratpoison/clipboard push + +grave ; p ; o + ~/.ratpoison/clipboard pop + +grave ; y ; {1-9} + ~/.ratpoison/clipboard set {1-9} + +grave ; y ; y + ~/.ratpoison/clipboard menu_set + +grave ; shift + p + xclip -o | curl -F 'sprunge=<-' http://sprunge.us | xclip + + +# +# music control +# + +super + space + mpc -h 127.0.0.1 toggle && ~/.ratpoison/panel/music > "$PANEL_FIFO" + +super + Right + mpc -h 127.0.0.1 next && echo "p`mpc current`" | cut --bytes 1-40> "$PANEL_FIFO" + +super + Left + mpc -h 127.0.0.1 prev && echo "p`mpc current`" | cut --bytes 1-40 > "$PANEL_FIFO" + +super + Up + mpc -h 127.0.0.1 volume +5 && mpc -h 127.0.0.1 volume | perl -pe 's/^volume://' | perl -pe 's/%$//' | perl -pe 's/^ /M/' > "$PANEL_FIFO" + +super + Down + mpc -h 127.0.0.1 volume -5 && mpc -h 127.0.0.1 volume | perl -pe 's/^volume://' | perl -pe 's/%$//' | perl -pe 's/^ /M/' > "$PANEL_FIFO" + +XF86AudioRaiseVolume + amixer -q set Master 5+ && volume -f 'V%i' > "$PANEL_FIFO" + +XF86AudioLowerVolume + amixer -q set Master 5- && volume -f 'V%i' > "$PANEL_FIFO" +# +# brightness controls +# + + +XF86MonBrightnessUp + xbacklight -inc 10 + +XF86MonBrightnessDown + xbacklight -dec 2 + +XF86KbdBrightnessUp + kbdlight up 1 + +XF86KbdBrightnessDown + kbdlight down 1 + +# make sxhkd reload its configuration files: +grave ; Escape + pkill -USR1 -x sxhkd -- cgit v1.2.3-54-g00ecf