Window managers that use Tcl/Tk edit
- arswm (at one time available from Bill Burdick via email)
- Panache [1]
- Tkwm
- Whim window manager
Window managers that use Tk edit
Discussion edit
Interesting related reading: an emerging window manager specification that extends ICCCM: [2]. See this recent article with members of freedesktop regarding their views of the direction desktop applications and libraries are headed [3][pertinence of xprop]DKF: xprop? To understand that, you need to understand that every X window has a set of mappings called properties associated with it. Each is a mapping from an XAtom to a typed bunch of bytes. All sorts of things (including quite a lot of window management) are done using this mechanism, most of which Tk conceals from you (and with good reason; it's a very low level mechanism.) xprop is a little utility that allows you to probe these properties. Note that programs can also ask for an event whenever window properties change, and this is the foundation of all sorts of things (including the send mechanism on Unix/X systems.)[Summary: it's hard for Tk to know what the WM is doing.]Along with the term window manager is the term desktop environment, which involves not only managing windows, but protocols for session management, drag and drop, and more.Two common desktop environments for Linux are GNOME and KDE; another is Enlightenment. Windows is both the desktop environment and window manager. MacOS X is more like Linux, in that one can select alternate window managers and desktop environments, but most Mac users use the desktop environment that Apple produces.Currently, it is unknown if anyone has developed a Tcl interface to session management protocols. There have been efforts to support drag and drop, though I don't know if these efforts are compatible with either of the linux desktop environments.
See Also edit
- A very simple window manager
- Desktop Environment
- Docking Framework
- A GUI style that has elements in oommon with Window Managers.
- TIP 47, Modifying Tk to Allow Writing X Window managers
- [4]
- Window Managers for X
- A guide by Matt Chapman.
- wmutils
- C command line utilities for window manipulation. (Plus: libwm).
- x11fs
- A FUSE filesystem for manipulating X11 windows.