From 371281d552364c729a7d22ea0dad4101bcf7cea9 Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Thu, 27 Oct 2022 13:55:03 +0900 Subject: [PATCH] added deepl as dropdown --- qtile/.config/qtile/Groups.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/qtile/.config/qtile/Groups.py b/qtile/.config/qtile/Groups.py index 7e89474..1fac445 100644 --- a/qtile/.config/qtile/Groups.py +++ b/qtile/.config/qtile/Groups.py @@ -12,7 +12,7 @@ group_names = [("","Home", 'h',{'layout': 'monadtall'}), ("","Documents", 'l',{'layout': 'monadtall'}), ("ﱘ","Music", 'u',{'layout': 'monadtall', 'matches' : [Match(wm_class="spotify")]}), ("","Video", 'v',{'layout': 'monadtall', 'matches' : [Match(wm_class="vlc")]}), - ("ﭮ","Discord", 'd',{'layout': 'monadtall', 'matches':[Match(wm_class="discord")]}), + ("ﭮ","VideoChat", 'z',{'layout': 'monadtall', 'matches':[Match(wm_class="discord")]}), ("","ClickUp", 'k',{'layout': 'monadtall', 'matches' : [Match(wm_class="clickup")]}), ("一","etc1", '1', {'layout': 'monadtall'}), ("二","etc2", '2', {'layout': 'monadtall'}), @@ -93,6 +93,15 @@ groups.append( on_focus_lost_hide=False, opacity=1 ), + DropDown( + 'Deepl', + 'surf deepl.com', + height = 0.5, + width = 0.8, + x = 0.1, + on_focus_lost_hide=False, + opacity=1 + ), DropDown( 'Telegram', 'telegram-desktop', @@ -138,4 +147,6 @@ keys.extend([ desc="open the dropdown for Telegram"), Key(['mod1','control'],'q',lazy.group['scratchpad'].dropdown_toggle('Qalculate!'), desc="open the dropdown for Qalculate!"), + Key(['mod1','control'],'d',lazy.group['scratchpad'].dropdown_toggle('Deepl'), + desc="open the dropdown for Deepl") ])