From 7046c98d3b39032932516ebdb92bc947a548e28e Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Thu, 19 Aug 2021 16:58:55 +0200 Subject: [PATCH] added dropdown for qalculate! --- qtile/.config/qtile/Groups.py | 11 +++++++++++ 1 file changed, 11 insertions(+) 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!"), ])