Is there some way to have transparent windows?

The closest thing I have seen is shapes of icons like Firefox, without any 
background (though when I tried to make a fully transparent icon, ctwm rendered 
it completely blank).



In my install of xfce4, this creates a partially transparent window (ctwm 
renders as solid grey):

import Tkinter as TK

class abloo(object):
  def main(self):
    root = TK.Tk()
    root.wait_visibility(root)
    root.wm_attributes('-alpha', 0.35)

    root.wm_title('tk')
    self.root = root
    root.mainloop()

abloo().main()


Reply via email to