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'),