wms/rwm_mainrole.sh
rootniformaticaservice 79acb0f64b code changes
2023-03-09 16:06:13 -03:00

64 lines
954 B
Bash
Executable file
Raw 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 stardom ##
. $HOME/.config/rootwm/rwm_var
FW=$(pfw)
usage() {
echo "usage:
rwm_starship.sh [ -n, -p, -l, wid ]
-n) next in order stack
-p) prev in order stack
-t) focus the top window in the servers window stack
wid) window id"
}
# docus 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 $1 && wid=$1
chwso -r $wid
}
case $1 in
-n)
next
;;
-p)
prev
;;
-t)
top
;;
0x*)
on_wid
;;
*)
usage
;;
esac
# transfer focus
wtf $wid
# set borders
chwb -s $BW -c $BG $(lsw | grep -v $(pfw)) # unfocused color
chwb -s $BW -c $FG $(pfw) # focused color