changed Qtile groups:

added group for tor browser
removed often misused groups
added groups "1","2" and "3" for general usage
This commit is contained in:
paul-loedige
2021-06-24 08:20:42 +02:00
parent 50d1d1ff52
commit d86c5e58e6
+6 -5
View File
@@ -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]