I'm working with many GIS applications under Gnome. It sometimes is very convenient to place one map over another to quickly spot differences.
There used to be a KDE trick to make any window (not just a terminal!) transparent, thereby allowing me to make one map semi-transparent and place it on the window of the other mapping software. Is there a similar trick for Gnome?
xprop -f _NET_WM_WINDOW_OPACITY 32c -set _NET_WM_WINDOW_OPACITY \ $(printf 0x%x $((0xffffffff * 30 / 100)))Conveniece extension using printf for percentage to hexadecimal conversion. I have also made a short script as a desktop shortcut documented here – Pau Coma Ramirez Mar 25 '21 at 11:07