well, I have been inactive for a while. Very busy at the moment. But right now I am at home again, and decided to give my workstation a new look, like everyone does every now and then.
I always wanted a nice way to combine Awn with the Gnome panel.
Until Awn finds a nice way to support this, I created my own solution. It is not very automatic at the moment, but it work.
Maybe someone has a better solution, but I will post mine:
I always wanted a nice way to combine Awn with the Gnome panel.
Until Awn finds a nice way to support this, I created my own solution. It is not very automatic at the moment, but it work.
Maybe someone has a better solution, but I will post mine:
![Click to quote this passage; Click again to jump to bottom [Q]](engine/grafts/newdefault/images/qq.png)
Step 2: start a script that show a picture that looks like the Awn bar, so it suggests an "expanded" Awn bar:

![Click to quote this passage; Click again to jump to bottom [Q]](engine/grafts/newdefault/images/qq.png)
def __init__(self):
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.window.connect("destroy", self.destroy)
self.window.set_decorated(False)
self.window.set_keep_below(True)
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.window.connect("destroy", self.destroy)
self.window.set_decorated(False)
self.window.set_keep_below(True)
![Click to quote this passage; Click again to jump to bottom [Q]](engine/grafts/newdefault/images/qq.png)
self.window.set_gravity(gtk.gdk.GRAVITY_SOUTH_WEST)
self.window.move(0,gtk.gdk.screen_height())
self.window.set_default_size(gtk.gdk.screen_width(), -1)
self.window.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DOCK)
self.window.move(0,gtk.gdk.screen_height())
self.window.set_default_size(gtk.gdk.screen_width(), -1)
self.window.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DOCK)
![Click to quote this passage; Click again to jump to bottom [Q]](engine/grafts/newdefault/images/qq.png)
*Edited at 12:37pm, 05/24/08