diff options
author | Mattias Andrée <maandree@kth.se> | 2017-01-13 02:55:28 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-01-13 02:55:28 +0100 |
commit | c15632dc1cc5109e268df4f361e36720fab3cf77 (patch) | |
tree | 73fdc5112b38efd57bcf37c1d3a51e93d1d0a73a /examples | |
parent | Work around bug in python-xlib, so new version of it can be used now that old versions cannot (diff) | |
download | xpybar-c15632dc1cc5109e268df4f361e36720fab3cf77.tar.gz xpybar-c15632dc1cc5109e268df4f361e36720fab3cf77.tar.bz2 xpybar-c15632dc1cc5109e268df4f361e36720fab3cf77.tar.xz |
Fix property reading for new version of python-xlib1.18.2
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | examples/compact | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/compact b/examples/compact index 7e08663..9c43d36 100644 --- a/examples/compact +++ b/examples/compact @@ -277,9 +277,9 @@ class MyXMonad(Entry): UTF8_STRING = display.intern_atom('UTF8_STRING') _XMONAD_LOG = display.intern_atom('_XMONAD_LOG') _NET_DESKTOP_NAMES = display.intern_atom('_NET_DESKTOP_NAMES') - xmonad_log = display.screen().root.get_full_property(_XMONAD_LOG, UTF8_STRING).value + xmonad_log = display.screen().root.get_full_property(_XMONAD_LOG, UTF8_STRING).value.decode('utf-8', 'replace') xmonad_log = xmonad_log.split(' : ') - net_desktop_names = display.screen().root.get_full_property(_NET_DESKTOP_NAMES, UTF8_STRING).value + net_desktop_names = display.screen().root.get_full_property(_NET_DESKTOP_NAMES, UTF8_STRING).value.decode('utf-8', 'replace') net_desktop_names = net_desktop_names[:-1].split('\0') ws = 0 ws_hit = False |