1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2024-11-25 14:06:08 -05:00

Bug fix: compton-trans -s does not work

My silly mistake. :-)
This commit is contained in:
Richard Grenville 2012-11-09 00:03:22 +08:00
parent 08ca5b4d1e
commit 59d6979612

View file

@ -56,7 +56,11 @@ if [ -z "$opacity" ]; then
fi
# Get ID of the target window
if [ -z "$wprefix" ]; then
wid=$(xwininfo | sed -n 's/^xwininfo:.*: \(0x[[:xdigit:]]*\).*$/\1/p')
else
wid=$(xwininfo $wprefix"$window" | sed -n 's/^xwininfo:.*: \(0x[[:xdigit:]]*\).*$/\1/p')
fi
if [ -z "$wid" ]; then
echo "Failed to find window."