2013-01-28 11:31:16 -05:00
|
|
|
#!/bin/sh
|
2011-12-07 13:35:22 -05:00
|
|
|
|
2012-11-08 09:30:42 -05:00
|
|
|
#
|
|
|
|
# compton-trans
|
2011-12-07 13:35:22 -05:00
|
|
|
# transset in a bash script
|
2012-04-01 00:54:42 -04:00
|
|
|
# Copyright (c) 2011-2012, Christopher Jeffrey
|
2012-11-08 09:30:42 -05:00
|
|
|
#
|
2011-12-07 13:35:22 -05:00
|
|
|
|
2012-04-01 00:54:42 -04:00
|
|
|
# Usage:
|
2013-05-04 15:29:10 -04:00
|
|
|
# $ compton-trans [options] [+|-]opacity
|
2012-11-08 09:30:42 -05:00
|
|
|
# By window id
|
|
|
|
# $ compton-trans -w "$WINDOWID" 75
|
|
|
|
# By name
|
|
|
|
# $ compton-trans -n "urxvt" 75
|
|
|
|
# By current window
|
|
|
|
# $ compton-trans -c 75
|
|
|
|
# By selection
|
|
|
|
# $ compton-trans 75
|
|
|
|
# $ compton-trans -s 75
|
|
|
|
# Increment current window 5%
|
|
|
|
# $ compton-trans -c +5
|
2011-12-07 13:35:22 -05:00
|
|
|
|
2012-11-08 09:34:53 -05:00
|
|
|
# "command" is a shell built-in, faster than "which"
|
|
|
|
if test -z "$(command -v xprop)" -o -z "$(command -v xwininfo)"; then
|
2013-05-04 14:34:34 -04:00
|
|
|
echo 'Please install x11-utils/xorg-xprop/xorg-xwininfo.' >& 2
|
2011-12-21 14:28:55 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2011-12-07 13:35:22 -05:00
|
|
|
|
2013-05-04 14:48:36 -04:00
|
|
|
# Variables
|
2013-05-04 15:29:10 -04:00
|
|
|
active=
|
2013-05-04 14:48:36 -04:00
|
|
|
wprefix=
|
2011-12-07 13:35:22 -05:00
|
|
|
window=
|
|
|
|
opacity=
|
|
|
|
cur=
|
2013-05-04 17:37:52 -04:00
|
|
|
action=
|
2013-05-04 14:48:36 -04:00
|
|
|
treeout=
|
|
|
|
wid=
|
|
|
|
topmost=
|
|
|
|
lineno=
|
2011-12-07 13:35:22 -05:00
|
|
|
|
2013-05-04 18:50:31 -04:00
|
|
|
# Workaround: replace '-5' with '~5' so as not to confuse getopts.
|
|
|
|
for v in "$@"; do
|
|
|
|
shift && set -- "$@" "$(echo "$v" | sed 's/^-\([0-9]\+%\?\)$/~\1/')"
|
|
|
|
done
|
|
|
|
|
2013-05-04 19:14:41 -04:00
|
|
|
# This takes into account the fact that getopts stops on
|
|
|
|
# any argument it doesn't recongize or errors on. This
|
|
|
|
# allows for things like `compton-trans -5` as well
|
|
|
|
# as `compton-trans -c +5 -s` (contrived example).
|
|
|
|
while test $# -gt 0; do
|
|
|
|
# Reset option index
|
|
|
|
OPTIND=1
|
2013-05-04 15:29:10 -04:00
|
|
|
|
2013-05-04 19:14:41 -04:00
|
|
|
# Read options
|
2013-05-04 19:44:31 -04:00
|
|
|
while getopts 'scdgn:w:o:-:' option "$@"; do
|
|
|
|
if test "$option" = '-'; then
|
|
|
|
case "$OPTARG" in
|
|
|
|
select | current | delete | get)
|
|
|
|
v=''
|
|
|
|
;;
|
|
|
|
name | window | opacity)
|
|
|
|
eval v=\$$OPTIND
|
|
|
|
OPTIND=$((OPTIND + 1))
|
|
|
|
;;
|
|
|
|
name=* | window=* | opacity=*)
|
|
|
|
v=$(echo "$OPTARG" | sed 's/^[^=]\+=//')
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "$0: illegal option $OPTARG" >& 2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
option=$(echo "$OPTARG" | cut -c 1)
|
|
|
|
OPTARG=$v
|
|
|
|
fi
|
2013-05-04 19:14:41 -04:00
|
|
|
case "$option" in
|
|
|
|
s) wprefix=''; window='' ;;
|
|
|
|
c)
|
|
|
|
active=$(xprop -root -notype _NET_ACTIVE_WINDOW \
|
|
|
|
| sed 's/^.*\(0x\S*\).*$/\1/')
|
|
|
|
wprefix='-id'; window=$active
|
|
|
|
;;
|
|
|
|
d) action='delete' ;;
|
|
|
|
g) action='get' ;;
|
|
|
|
n) wprefix='-name'; window=$OPTARG ;;
|
|
|
|
w) wprefix='-id'; window=$OPTARG ;;
|
|
|
|
o) opacity=$OPTARG ;;
|
|
|
|
\?) exit 1 ;;
|
|
|
|
esac
|
|
|
|
done
|
2013-05-04 15:29:10 -04:00
|
|
|
|
2013-05-04 19:14:41 -04:00
|
|
|
# Read positional arguments
|
|
|
|
shift $((OPTIND - 1))
|
|
|
|
test -n "$1" && opacity=$1 && shift
|
2011-12-07 13:35:22 -05:00
|
|
|
done
|
|
|
|
|
2013-05-04 14:34:34 -04:00
|
|
|
# clean up opacity. xargs == a poor man's trim.
|
2013-05-04 18:50:31 -04:00
|
|
|
opacity=$(echo "$opacity" | xargs | sed 's/%//g' | sed 's/^~\([0-9]\+\)$/-\1/')
|
2012-11-08 09:34:53 -05:00
|
|
|
|
2013-05-04 14:48:36 -04:00
|
|
|
# Validate opacity value
|
2013-05-04 17:37:52 -04:00
|
|
|
if test -z "$action" && ! echo "$opacity" | grep -q '^[+-]\?[0-9]\+$'; then
|
2013-05-04 15:29:10 -04:00
|
|
|
echo "Invalid opacity specified: $opacity."
|
2012-11-14 05:42:09 -05:00
|
|
|
exit 1
|
2012-11-08 09:34:53 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Get ID of the target window
|
2013-05-04 14:18:04 -04:00
|
|
|
if test -z "$wprefix"; then
|
2012-11-14 05:42:09 -05:00
|
|
|
treeout=$(xwininfo -children -frame)
|
2012-11-08 11:03:22 -05:00
|
|
|
else
|
2013-05-04 14:18:04 -04:00
|
|
|
treeout=$(xwininfo -children $wprefix "$window")
|
2012-11-08 11:03:22 -05:00
|
|
|
fi
|
2012-11-08 09:34:53 -05:00
|
|
|
|
2012-11-11 00:02:14 -05:00
|
|
|
wid=$(echo "$treeout" | sed -n 's/^xwininfo:.*: \(0x[[:xdigit:]]*\).*$/\1/p')
|
|
|
|
|
2013-05-04 14:18:04 -04:00
|
|
|
if test -z "$wid"; then
|
2013-05-04 14:34:34 -04:00
|
|
|
echo 'Failed to find window.'
|
2012-11-14 05:42:09 -05:00
|
|
|
exit 1
|
2012-11-08 09:34:53 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Make sure it's not root window
|
2013-05-04 14:48:36 -04:00
|
|
|
if echo "$treeout" | fgrep -q 'Parent window id: 0x0'; then
|
2013-05-04 14:34:34 -04:00
|
|
|
echo 'Cannot set opacity on root window.'
|
2012-11-14 05:42:09 -05:00
|
|
|
exit 1
|
2012-11-08 09:34:53 -05:00
|
|
|
fi
|
|
|
|
|
2012-11-11 00:02:14 -05:00
|
|
|
# If it's already the topmost window
|
2013-05-04 14:48:36 -04:00
|
|
|
if echo "$treeout" | grep -q 'Parent window id: 0x[[:xdigit:]]* (the root window)'; then
|
2013-05-04 14:18:04 -04:00
|
|
|
topmost=$wid
|
2012-11-11 00:02:14 -05:00
|
|
|
else
|
2012-11-14 05:42:09 -05:00
|
|
|
# Get the whole window tree
|
2013-05-04 14:18:04 -04:00
|
|
|
treeout=$(xwininfo -root -tree)
|
2012-11-08 09:34:53 -05:00
|
|
|
|
2013-05-04 14:18:04 -04:00
|
|
|
if test -z "$treeout"; then
|
2013-05-04 14:34:34 -04:00
|
|
|
echo 'Failed to get root window tree.'
|
2012-04-01 00:54:42 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
2012-11-08 09:34:53 -05:00
|
|
|
|
2012-11-14 05:42:09 -05:00
|
|
|
# Find the line number of the target window in the window tree
|
2013-05-04 14:18:04 -04:00
|
|
|
lineno=$(echo -n "$treeout" | grep -nw "$wid" | head -n1 | cut -d ':' -f 1)
|
2011-12-07 13:35:22 -05:00
|
|
|
|
2013-05-04 14:18:04 -04:00
|
|
|
if test -z "$lineno"; then
|
2013-05-04 14:34:34 -04:00
|
|
|
echo 'Failed to find window in window tree.'
|
2012-11-14 05:42:09 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2011-12-07 13:35:22 -05:00
|
|
|
|
2012-11-14 05:42:09 -05:00
|
|
|
# Find the highest ancestor of the target window below
|
2013-05-04 14:18:04 -04:00
|
|
|
topmost=$(echo -n "$treeout" \
|
2013-05-04 17:54:18 -04:00
|
|
|
| head -n $((lineno + 1)) \
|
2013-05-04 14:34:34 -04:00
|
|
|
| sed -n 's/^ \(0x[[:xdigit:]]*\).*/\1/p' \
|
|
|
|
| tail -n 1)
|
2012-11-11 00:02:14 -05:00
|
|
|
fi
|
2012-11-08 09:34:53 -05:00
|
|
|
|
2013-05-04 14:18:04 -04:00
|
|
|
if test -z "$topmost"; then
|
2013-05-04 14:34:34 -04:00
|
|
|
echo 'Failed to find the highest parent window below root of the' \
|
|
|
|
'selected window.'
|
2012-11-08 09:30:42 -05:00
|
|
|
exit 1
|
2012-11-08 09:34:53 -05:00
|
|
|
fi
|
|
|
|
|
2013-05-04 14:48:36 -04:00
|
|
|
# Remove the opacity property.
|
2013-05-04 17:37:52 -04:00
|
|
|
if test x"$action" = x'delete'; then
|
2013-05-04 14:48:36 -04:00
|
|
|
xprop -id "$topmost" -remove _NET_WM_WINDOW_OPACITY
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2013-05-04 17:37:52 -04:00
|
|
|
# Get current opacity.
|
|
|
|
cur=$(xprop -id "$topmost" -notype _NET_WM_WINDOW_OPACITY \
|
|
|
|
| sed 's/^.*\b\([0-9]\+\).*$\|^.*$/\1/')
|
|
|
|
test -z "$cur" && cur=0xffffffff
|
|
|
|
cur=$((cur * 100 / 0xffffffff))
|
|
|
|
|
|
|
|
# Output current opacity.
|
|
|
|
if test x"$action" = x'get'; then
|
|
|
|
echo "$cur"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2012-11-08 09:34:53 -05:00
|
|
|
# Calculate the desired opacity
|
2013-05-04 14:48:36 -04:00
|
|
|
if echo "$opacity" | grep -q '^[+-]'; then
|
2013-05-04 14:18:04 -04:00
|
|
|
opacity=$(($cur + $opacity))
|
2011-12-07 13:35:22 -05:00
|
|
|
fi
|
2012-11-08 09:34:53 -05:00
|
|
|
|
2013-05-04 14:18:04 -04:00
|
|
|
test $opacity -lt 0 && opacity=0
|
|
|
|
test $opacity -gt 100 && opacity=100
|
2012-11-08 09:34:53 -05:00
|
|
|
|
|
|
|
# Set opacity
|
2013-05-04 14:18:04 -04:00
|
|
|
opacity=$((opacity * 0xffffffff / 100))
|
2012-11-08 09:34:53 -05:00
|
|
|
xprop -id "$topmost" -f _NET_WM_WINDOW_OPACITY 32c \
|
2012-11-14 05:42:09 -05:00
|
|
|
-set _NET_WM_WINDOW_OPACITY "$opacity"
|