diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-02-26 01:03:26 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-02-26 01:03:26 +0100 |
commit | 1b19db603c37080f3ca4141d4a69c4ca4a075409 (patch) | |
tree | f339d15f3df94d09450450b83b0dd4858a7a9ce7 /src/__main__.py | |
parent | partial strut dock (diff) | |
download | xpybar-1b19db603c37080f3ca4141d4a69c4ca4a075409.tar.gz xpybar-1b19db603c37080f3ca4141d4a69c4ca4a075409.tar.bz2 xpybar-1b19db603c37080f3ca4141d4a69c4ca4a075409.tar.xz |
place a black panel either on the top or the bottom
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/__main__.py')
-rwxr-xr-x | src/__main__.py | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/src/__main__.py b/src/__main__.py index ad195f4..36ee486 100755 --- a/src/__main__.py +++ b/src/__main__.py @@ -1,12 +1,20 @@ #!/usr/bin/env python3 -import time -import Xlib.display, Xlib.Xatom +import time, sys +import Xlib.display, Xlib.Xatom, Xlib.ext.randr, Xlib.X + +WIDTH, HEIGHT, LEFT, TOP, Y = 1600, 12, 1600, 24, 1200 - 24 - 12 display = Xlib.display.Display() screen = display.screen() -window = screen.root.create_window(0, 0, 100, 100, 0, screen.root_depth) +window = screen.root.create_window(LEFT, Y, WIDTH, HEIGHT, 0, screen.root_depth, + Xlib.X.InputOutput, Xlib.X.CopyFromParent, + event_mask = ( + Xlib.X.StructureNotifyMask | + Xlib.X.ButtonReleaseMask + ), + colormap = Xlib.X.CopyFromParent) window.set_wm_name('xpybar') window.set_wm_icon_name('xpybar') @@ -14,21 +22,34 @@ window.set_wm_class('bar', 'xpybar') _CARD = display.intern_atom("CARDINAL") _PSTRUT = display.intern_atom("_NET_WM_STRUT_PARTIAL") -window.change_property(_PSTRUT, _CARD, 32, [0, 60, 0, 0, 0, 0, 24, 767, 0, 0, 0, 0]) +window.change_property(_PSTRUT, _CARD, 32, topx(LEFT, TOP, WIDTH, HEIGHT)) + +top = lambda x, y, width, height : [0, 0, y + height, 0, 0, 0, 0, 0, x, x + width, 0, 0] +bottom = lambda x, y, width, height : [0, 0, 0, y + height, 0, 0, 0, 0, 0, 0, x, x + width] _ATOM = display.intern_atom("ATOM") _TYPE = display.intern_atom("_NET_WM_WINDOW_TYPE") _DOCK = display.intern_atom("_NET_WM_WINDOW_TYPE_DOCK") window.change_property(_TYPE, _ATOM, 32, [_DOCK]) +gc = window.create_gc() window.map() display.flush() -time.sleep(1) +e = None +while True: + try: + e = display.next_event() + if e.type == Xlib.X.DestroyNotify: + break + except KeyboardInterrupt: + break + gc.change(foreground = screen.black_pixel) + window.fill_rectangle(gc, 0, 0, 1600, 12) + display.flush() window.unmap() display.flush() display.close() - |