Hi There,
i just wrote a simple Program that gives a transparent Window with python
from tkinter import Tk
import time
from tkinter import messagebox
root = Tk()
root.wait_visibility(root)
root.wm_attributes("-alpha", 0.6)
root.mainloop()
so with this Program i get an transparent Window on Ubuntu but not on TinyCore
is there any extension i need to install to get this to work on TinyCore 13.x/x86_64 ?
Thanx