14 lines
452 B
Python
14 lines
452 B
Python
#!/usr/bin/env python
|
|
|
|
from libqtile.config import Group#, ScratchPad, DropDown
|
|
|
|
from defines import term
|
|
|
|
groups = [Group(i) for i in "asdfuiop"]
|
|
#groups = [
|
|
# Group("code", spawn="code", layout="monadtall", persist=True),
|
|
# Group("chat", spawn=["firefox https://web.whatsapp.com/","discord"],layout="monadwide",persist=True),
|
|
# Group("spot", spawn="spotify",layout="max", persist=True),
|
|
# ScratchPad("scratch",[DropDown('term',term)])
|
|
#]
|