remove transsetter script
This commit is contained in:
parent
496da4fe6e
commit
ec51fdf5c9
1 changed files with 0 additions and 51 deletions
|
@ -1,51 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# A background script to provide terminal/editor compositing in a Ryudo
|
||||
# session.
|
||||
# Licensed under the MIT License -- do what you want with it.
|
||||
# Copyleft 2021 Derek Stevens <nilix@nilfm.cc>
|
||||
|
||||
termprog=Alacritty
|
||||
geditor=acme
|
||||
opacity=0.85
|
||||
|
||||
setter=$(which transset)
|
||||
if [ -z "$setter" ]; then
|
||||
setter=$(which transset-df)
|
||||
fi
|
||||
|
||||
if [ -z "$setter" ]; then
|
||||
echo "we need transset or transset-df in PATH!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
#if which xcompmgr > /dev/null; then
|
||||
# xcompmgr -n&
|
||||
#else
|
||||
# ehco "we need xcompmgr in PATH!"
|
||||
# exit 1
|
||||
#fi
|
||||
|
||||
if ! which xshove > /dev/null; then
|
||||
echo "we need xshove in PATH!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
wlist=$(mktemp)
|
||||
oldwlist=$(mktemp)
|
||||
while true; do
|
||||
xshove > $wlist
|
||||
while read wprop; do
|
||||
wid=$(echo ${wprop} | awk '{print $1}')
|
||||
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
|
Loading…
Reference in a new issue