Overhaul luna complete
This commit is contained in:
parent
06f5971965
commit
6f9fdca876
110 changed files with 2408 additions and 2129 deletions
17
modules/wm/qtile/config/groups.py
Normal file
17
modules/wm/qtile/config/groups.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
from libqtile.config import Group
|
||||
from icons import group_icons
|
||||
|
||||
class CreateGroups:
|
||||
group_names = group_icons
|
||||
|
||||
def init_groups(self):
|
||||
"""
|
||||
Return the groups of Qtile
|
||||
"""
|
||||
#### First and last
|
||||
groups = [Group(name, layout="max") if name == self.group_names[0]
|
||||
else Group(name, layout="floating")
|
||||
if name == self.group_names[-1] else Group(name, layout="monadtall")
|
||||
for name in self.group_names]
|
||||
return groups
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue