transsetter.sh: only apply opacity when a window is created, not every run

This commit is contained in:
Iris Lightshard 2021-03-10 00:24:39 -05:00
parent de6f248389
commit 5b5534d012
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398

View file

@ -32,17 +32,20 @@ if ! which xshove > /dev/null; then
fi
wlist=$(mktemp)
oldwlist=$(mktemp)
while true; do
xshove > $wlist
while read wprop; do
wid=$(echo ${wprop} | awk '{print $1}')
wclass=$(echo ${wprop} | awk '{print $3}')
if [ "$wclass" = "${geditor}" ]; then
$setter -i 0x$wid ${opacity} > /dev/null
elif [ "${wclass}" = "${termprog}" ]; then
$setter -i 0x$wid ${opacity} > /dev/null
if ! grep $wid $oldwlist > /dev/null; then
wclass=$(echo ${wprop} | awk '{print $3}')
if [ "$wclass" = "${geditor}" ]; then
$setter -i 0x$wid ${opacity} > /dev/null
elif [ "${wclass}" = "${termprog}" ]; then
$setter -i 0x$wid ${opacity} > /dev/null
fi
fi
done < $wlist
cat $wlist > $oldwlist;
sleep 0.2
done