Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save joejulian/5869462 to your computer and use it in GitHub Desktop.
Save joejulian/5869462 to your computer and use it in GitHub Desktop.
A tiny script to set the transparency of the current X window. If "all" is specified, it tries to find all gnome-terminal windows and applies the transparency to all of them.
#!/bin/bash
# vim: set sts=4 sw=4 et tw=0 :
#
# License: BSD
: ${XWININFO:=$(type -P xwininfo)}
[[ -z ${XWININFO} ]] && { echo "You need to install xwininfo"; exit 1; }
: ${XPROP:=$(type -P xprop)}
[[ -z ${XPROP} ]] && { echo "You need to install xprop"; exit 1; }
TRANSPARENCY_PERCENT=$1
[[ -z ${TRANSPARENCY_PERCENT} ]] && { echo "Usage: $0 <transparency in percentage> [all]"; exit 1; }
if [[ "$2" != "all" ]]; then
TERMINAL_WINDOW_XID=$(xprop -root | awk '/_NET_ACTIVE_WINDOW\(WINDOW\)/{print $NF}')
else
# This is very fragile
TERMINAL_WINDOW_XID=$("$XWININFO" -root -tree | grep -v "Terminal" | sed -n 's/^[[:space:]]\+\([0-9a-fx]\+\).*gnome-terminal.*/\1/p') $(xprop -root | awk '/_NET_ACTIVE_WINDOW\(WINDOW\)/{print $NF}')
fi
if [[ ${TRANSPARENCY_PERCENT} = 0 ]]; then
TRANSPARENCY_HEX="0xffffffff"
elif [[ ${TRANSPARENCY_PERCENT} = 100 ]]; then
TRANSPARENCY_HEX="0x00000000"
else
TRANSPARENCY_HEX=$(printf "0x%x" $((4294967295 - 4294967295 * $TRANSPARENCY_PERCENT / 100)))
fi
echo "Setting transparency to $TRANSPARENCY_HEX (${TRANSPARENCY_PERCENT}%)"
for each in $TERMINAL_WINDOW_XID; do
"$XPROP" -id $each -f _NET_WM_WINDOW_OPACITY 32c -set _NET_WM_WINDOW_OPACITY $TRANSPARENCY_HEX
done
@joejulian
Copy link
Author

Minor change. This allows it to be used from .bashrc to set the transparency of the current gnome-terminal without clicking. Or you can add the word, "all" to change all, ie. "set_gnome-terminal_transparency.sh 75 all"

@joejulian
Copy link
Author

The last update fixes the fact that the script was asking for transparency but specifying opacity. 100% transparent is supposed to be invisible.

@avinashkanaujiya
Copy link

avinashkanaujiya commented Sep 12, 2020

change type -P xprop to type xprop & change type -P xwininfo to type xwininfo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment