Topic: Terminator transparency workaround
It's likely that you haven't read my introduction topic, so let me explain...
Even with "background_type=transparent" set in Terminator's config file, transparency fails for me.
Since (pseudo) transparency does work in Terminator when composition is turned off I think it would be safe to assume there is a conflict involving xcompmrg. (any help troubleshooting this root problem would be awesomely appreciated)
I've devised an, admittedly shoddy, easy workaround involving xdotool, which was suggested by corenominal.
This is a simple script that I have set to be executed from Openbox's menu:
#/bin/bash
# launch terminator with transparency
terminator &
(sleep 1s && transset .75) &
(sleep 2s && xdotool mousemove 400 450) &
(sleep 3s && xdotool click 1) &Very simple, and it doesn't work if there are other windows on the desktop (since it usually draws Terminator in an area that won't get "hit" by the "xdotool click 1") so I have to minimise all windows before opening.
Also, I've tried using a variable to hold the value of 'xdotool getwindowfocus' and using 'xdotool windowmove $VARNAME x y' to move the window to a particular location but this doesn't seem to work at all. Even using a hardcoded value that I am certain is the correct window ID will fail to move the window.
I'm definitely not a pro, so if anyone knows of a method that would work better than this (which there has to be), then please let me know.
