Add box property management

Widgets can be put in left, center or right box.
Warning: right box is available (no error), but seems undefined (Gnome Shell 3.36)...
This commit is contained in:
2020-05-05 09:56:59 +02:00
parent 506660f1da
commit f536c89e36
3 changed files with 94 additions and 44 deletions

View File

@@ -45,7 +45,7 @@ class TimerThread(Thread):
def _displayTimerValue(self):
encoder = json.JSONEncoder()
res = {'group':'Timer', 'items':[]}
item = DBUSItem('timer', onClick='signal')
item = DBUSItem('timer', onClick='signal', box='right')
curValue = self.timers[self.curTimer]
item.text = '%02d:%02d' % (int(curValue/60)%60, curValue%60)
if curValue >= (60*60):