Jeff Epler wrote:
> I have written a rather hackish extension to use NET_WM_ICON to set
> full-color icons in Tkinter apps. You can read about it here:
> http://craie.unpy.net/aether/index.cgi/software/01112237744
> you'll probably need to take a look at the EWMH spec, too. If KDE
> supports
I have written a rather hackish extension to use NET_WM_ICON to set
full-color icons in Tkinter apps. You can read about it here:
http://craie.unpy.net/aether/index.cgi/software/01112237744
you'll probably need to take a look at the EWMH spec, too. If KDE
supports NET_WM_ICON, this may work f
Here is a short program that sets Tk's window icon on Linux. My window
manager is icewm, and it uses a scaled version of the "flagup" image
both at the upper-left corner of the window and on the task bar entry
for the window.
import Tkinter
app = Tkinter.Tk()
app.iconbitmap("@/usr/X11
Jeff Epler wrote:
> Here is a short program that sets Tk's window icon on Linux. My window
> manager is icewm, and it uses a scaled version of the "flagup" image
> both at the upper-left corner of the window and on the task bar entry
> for the window.
>
> import Tkinter
> app = Tkinter.T
Apologies in advance for the long post - I wanted to be sure I included all
the relevant details. The answer is probably very, very simple.
I am doing something stupid here, but I don't know what it is. I'm writing
an application with a Tkinter GUI (Python 2.4, Tcl/Tk 8.4.) and I want to
put a cus