]> git.lizzy.rs Git - bspwm.git/commit
Remove settings: auto_cancel and auto_alternate
authorBastien Dejean <nihilhill@gmail.com>
Thu, 26 Nov 2015 19:13:05 +0000 (20:13 +0100)
committerBastien Dejean <nihilhill@gmail.com>
Thu, 26 Nov 2015 19:13:05 +0000 (20:13 +0100)
commit4fbd961311a3b76f60b7128c85f5b8be0cd91ce2
treef645a1e84430a541b726a8097b597446168730b6
parentd3166dd399fe0fece83a2b01de50587ca7d7e26f
Remove settings: auto_cancel and auto_alternate

auto_cancel can be emulated with:

super + ctrl + {h,j,k,l}
dir={left,down,up,right}; \
cur=$(bspc query -T -w focused.!automatic | jshon -e splitDir -u 2>&-); \
[ "$dir" = "$cur" ] && dir=cancel; \
bspc window -p "$dir"

and auto_alternate with:

super + {_,alt + }{1-9,0}
kind={desktop,monitor}; \
item="^{1-9,10}"; \
bspc query --"$kind"s --"$kind" "$\{item\}.focused" > /dev/null && item=last; \
bspc "$kind" -f "$item"
contrib/bash_completion
contrib/zsh_completion
doc/bspwm.1
doc/bspwm.1.asciidoc
messages.c
settings.c
settings.h