blob: 1a4dc40f3aa27117df43494c3ab3a395f0ec1aa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
scratchpad=/tmp/herbstluftwm:spprof
if xdotool search --onlyvisible --class 'spprof'; then
if [ $(herbstclient list_monitors | grep '[FOCUS]' | cut -d\" -f2) = $(herbstclient attr clients.$(cat $scratchpad) | grep 's - - tag' | awk '{ print $6 }' | sed 's/"//g') ]; then
xdotool search -onlyvisible -class 'spprof' windowunmap
exit
fi
fi
if [ -f $scratchpad ]; then
if ! herbstclient bring $(cat $scratchpad); then
xdotool search -class 'spprof' windowmap && exit
fi
fi
if ! xdotool search --class 'spprof' windowmap; then
. ~/.profile && st -t 'spprof' -c 'spprof' -e profanity &
xdotool search -sync -onlyvisible -class 'spprof'
herbstclient attr clients.focus.winid > $scratchpad
fi
|