From e0fa2f31103ac16402adfe3d218d11df5e216634 Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Wed, 3 Nov 2021 19:12:08 +0100 Subject: [PATCH] added telegram dropdown --- 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 472075a..77c882b 100644 --- a/qtile/.config/qtile/Groups.py +++ b/qtile/.config/qtile/Groups.py @@ -78,6 +78,15 @@ groups.append( x = 0.1, on_focus_lost_hide=False, opacity=1 + ), + DropDown( + 'Telegram', + 'telegram-desktop', + height = 0.5, + width = 0.8, + x = 0.1, + on_focus_lost_hide=False, + opacity=1 ) ]) ) @@ -108,6 +117,8 @@ keys.extend([ desc="open the dropdown for Signal"), Key(['mod1','control'],'s',lazy.group['scratchpad'].dropdown_toggle('Slack'), desc="open the dropdown for Slack"), + Key(['mod1','control'],'t',lazy.group['scratchpad'].dropdown_toggle('Telegram'), + desc="open the dropdown for Telegram"), Key(['mod1','control'],'q',lazy.group['scratchpad'].dropdown_toggle('Qalculate!'), desc="open the dropdown for Qalculate!"), ])