blob: 7af3bc67b55f48918359cdbaf0e1f44a069c9db8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#!/bin/sh
#
# z3bra (mods by xero) - 2014 (c) wtfpl
# window focus wrapper that sets borders and can focus next/previous window
BW=${BW:-4} # border width
ACTIVE=${ACTIVE:-0xd0d0d0} # active border color
INACTIVE=${INACTIVE:-0x222222} # inactive border color
# get current window id
CUR=$(pfw)
usage() {
echo "usage: $(basename $0) <next|prev|wid>"
exit 1
}
setborder() {
ROOT=$(lsw -r)
# check if window exists
wattr $2 || return
# do not modify border of fullscreen windows
test "$(wattr xywh $2)" = "$(wattr xywh $ROOT)" && return
case $1 in
active) chwb -s $BW -c $ACTIVE $2 ;;
inactive) chwb -s $BW -c $INACTIVE $2 ;;
esac
}
case $1 in
next) wid=$(lsw|grep -v $CUR|sed '1 p;d') ;;
prev) wid=$(lsw|grep -v $CUR|sed '$ p;d') ;;
0x*) wattr $1 && wid=$1 ;;
*) usage ;;
esac
# exit if we can't find another window to focus
test -z "$wid" && echo "$(basename $0): can't find a window to focus" >&2 && exit 1
if echo `wname $wid` | grep -q "stalonetray"
then
wmv -a 0 0 $wid
chwb -x 0x222222 -s 0 $wid
ignw -s $wid
else
setborder inactive $CUR # set inactive border on current window
setborder active $wid # activate the new window
chwso -r $wid # put it on top of the stack
wtf $wid # set focus on it
fi
# you might want to remove this for sloppy focus
#wmp -a $(wattr xy $wid) # move the mouse cursor to
#wmp -r $(wattr wh $wid) # .. its bottom right corner
|