Is it possible to set window transparency in codelite, for example for the output or workspace view?
Is there a fast option to hardcode this since this feature seems to e missing and how platform dependent would that be?
I use xubuntu.
Is it possible to set window transparency in codelite, for example for the output or workspace view?
Is there a fast option to hardcode this since this feature seems to e missing and how platform dependent would that be?
I use xubuntu.
Solved:
I followed the instructions on "Per Application Transparency" in this link which uses Devil's Pie: to grap and change window behavior. Follow the instructions and place this into your "opacity.ds" :
( if
( and
( contains ( application_name ) "codelite" )
( or
( is ( window_name ) "Output View" )
( is ( window_name ) "Workspace View" )
)
)
( begin
( spawn_async (str "transset-df -i " (window_xid) " 0.55" ))
))
This makes the "Output view" and the "Worspace View" transparent(if detached) with an alpha of 0.55. Change the value to your liking.