diff --git a/qtile/.config/qtile/Groups.py b/qtile/.config/qtile/Groups.py index 84ce022..0ca00c9 100644 --- a/qtile/.config/qtile/Groups.py +++ b/qtile/.config/qtile/Groups.py @@ -7,7 +7,8 @@ import re from defines import mod,term from Keys import keys -group_names = [(" ","Home", 'h',{'layout': 'monadtall'}), +group_names = [(" ","Org",'o',{'layout': 'monadtall'}), + (" ","Home", 'h',{'layout': 'monadtall'}), (" ","Browser", 'f',{'layout': 'monadtall'}), (" ","Mail", 'm',{'layout': 'monadtall', 'matches':[Match(wm_class="Mail")]}), (" ","Coding", 'c',{'layout': 'monadtall', 'matches' : [Match(wm_class="code")]}), @@ -121,15 +122,6 @@ groups.append( x = 0.1, on_focus_lost_hide=True, opacity=1, - ), - DropDown( - 'ToDo', - 'surf https://cloud.ploedige.com/apps/tasks/#/collections/week', - height = 0.5, - width = 0.8, - x = 0.1, - on_focus_lost_hide=True, - opacity=1, ) ]) ) @@ -169,7 +161,5 @@ keys.extend([ Key(['mod1','control'],'d',lazy.group['scratchpad'].dropdown_toggle('Deepl'), desc="open the dropdown for Deepl"), Key(['mod1','control'],'k',lazy.group['scratchpad'].dropdown_toggle('Calendar'), - desc="open the dropdown for Nextcloud Calendar"), - Key(['mod1','control'],'o',lazy.group['scratchpad'].dropdown_toggle('ToDo'), desc="open the dropdown for Nextcloud Calendar") ])