diff --git a/qtile/.config/qtile/Groups.py b/qtile/.config/qtile/Groups.py index bcb1480..dfbc39e 100644 --- a/qtile/.config/qtile/Groups.py +++ b/qtile/.config/qtile/Groups.py @@ -61,6 +61,15 @@ groups.append( on_focus_lost_hide=False, opacity = 1 ), + DropDown( + 'Qalculate!', + 'qalculate-gtk', + height = 0.5, + width = 0.5, + x = .25, + on_focus_lost_hide=True, + opacity = 1 + ), ]) ) @@ -88,4 +97,6 @@ keys.extend([ desc="open the dropdown for WhatsApp"), Key(['mod1','control'],'i',lazy.group['scratchpad'].dropdown_toggle('Signal'), desc="open the dropdown for Signal"), + Key(['mod1','control'],'q',lazy.group['scratchpad'].dropdown_toggle('Qalculate!'), + desc="open the dropdown for Qalculate!"), ])