wms/wms_focuser.sh

71 lines
1.0 KiB
Bash
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
## give windows the focus and put some color ##
# wms_focuser.sh by @root_informatica.
. $HOME/.config/wms/wms_var
FLAG=$1
# focused window.
FW=$(pfw)
usage() {
cat<<EOF
usage:
wms_mainrole.sh [ -n, -p, -t, wid ]
-n) next in order stack
-p) prev in order stack
-t) focus the top window in the servers window stack
wid) window id
EOF
}
# focus next window in server's window stack order
next() {
wid=$(lsw | grep -v $FW | sed '1 p;d')
chwso -r $wid
}
# focus previous window in in server's window stack order
prev() {
wid=$(lsw | grep -v $FW | sed '$ p;d')
chwso -r $wid
}
# focus the top window in the server's window stack order
top() {
wid=$(lsw | sed '$ p;d')
}
# focus on wid
on_wid() {
wattr $FLAG && wid=$FLAG
chwso -r $wid
}
case $FLAG in
-n)
next
;;
-p)
prev
;;
-t)
top
;;
0x*)
on_wid
;;
*)
usage
;;
esac
# transfer focus
wtf $wid
# set colors on the unfocused windows.
chwb -s $BW -c $IC $(lsw | grep -v $wid)
# set colors on the focused widnow.
chwb -s $BW -c $AC $wid