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
1 changed files with 5 additions and 1 deletions

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."