From 30a36773c36730519d327c722882093483e87936 Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Thu, 25 Mar 2021 11:08:22 +0100 Subject: [PATCH] changed opacity --- qtile/.config/qtile/Groups.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/qtile/.config/qtile/Groups.py b/qtile/.config/qtile/Groups.py index d6f9079..eed094a 100644 --- a/qtile/.config/qtile/Groups.py +++ b/qtile/.config/qtile/Groups.py @@ -41,21 +41,23 @@ groups.append( 'bitwarden', on_focus_lost_hide=False, ), - DropDown( - 'password manager', - 'keepassxc', - on_focus_lost_hide=False, - ), DropDown( 'WhatsApp', 'whatsapp-for-linux', height = 0.5, width = 0.5, - x = .25 + x = .25, + on_focus_lost_hide=False, + opacity=1 ), DropDown( 'Signal', 'signal-desktop', + height = 0.5, + width = 0.5, + x = .25, + on_focus_lost_hide=False, + opacity = 1 ), ]) ) @@ -80,8 +82,6 @@ keys.extend([ desc="open the dropdown filemanager"), Key(['mod1','control'],'b',lazy.group['scratchpad'].dropdown_toggle('bitwarden'), desc="open the dropdown password manager KeePassXC"), - Key(['mod1','control'],'p',lazy.group['scratchpad'].dropdown_toggle('password manager'), - desc="open the dropdown password manager KeePassXC"), Key(['mod1','control'],'w',lazy.group['scratchpad'].dropdown_toggle('WhatsApp'), desc="open the dropdown for WhatsApp"), Key(['mod1','control'],'i',lazy.group['scratchpad'].dropdown_toggle('Signal'),