From d86c5e58e60d3f94e4679811ac7e0382782f3f67 Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Thu, 24 Jun 2021 08:20:42 +0200 Subject: [PATCH] changed Qtile groups: added group for tor browser removed often misused groups added groups "1","2" and "3" for general usage --- qtile/.config/qtile/Groups.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/qtile/.config/qtile/Groups.py b/qtile/.config/qtile/Groups.py index 2c7ec49..bcb1480 100644 --- a/qtile/.config/qtile/Groups.py +++ b/qtile/.config/qtile/Groups.py @@ -5,16 +5,17 @@ from defines import term from Keys import keys group_names = [("","Home", 'h',{'layout': 'monadtall'}), - ("","Coding", 'c',{'layout': 'monadtall'}), ("","Browser", 'f',{'layout': 'monadtall'}), ("","Mail", 'm',{'layout': 'monadtall'}), + ("","Coding", 'c',{'layout': 'monadtall'}), + ("","Documents", 'l',{'layout': 'monadtall'}), + ("﨩","Tor Browser", 't',{'layout': 'monadtall'}), ("ﱘ","Music", 's',{'layout': 'monadtall'}), ("","Video", 'v',{'layout': 'monadtall'}), - ("","Documents", 'l',{'layout': 'monadtall'}), ("ﭮ","Discord", 'd',{'layout': 'monadtall'}), - ("","VM's", 'o',{'layout': 'monadtall'}), - ("","Gaming", 'g',{'layout': 'monadtall'}), - ("","etc", 'x', {'layout': 'monadtall'})] + ("1","etc1", '1', {'layout': 'monadtall'}), + ("2","etc2", '2', {'layout': 'monadtall'}), + ("3","etc3", '3', {'layout': 'monadtall'})] groups = [Group(icon, **kwargs) for icon, name, key, kwargs in group_names]