Fixing broken workspaces.

This commit is contained in:
Derek Taylor 2021-11-04 08:40:49 -05:00
parent ead1551c8b
commit a2dbbbe49e
3 changed files with 21 additions and 19 deletions

View File

@ -1,5 +1,5 @@
[geometry]
posx=16
posx=3856
posy=40
sizex=1884
sizey=1020

View File

@ -310,15 +310,16 @@ keys = [
Groups are really workspaces.
#+BEGIN_SRC python
groups = [Group("WWW", {'layout': 'monadtall'}),
Group("DEV", {'layout': 'monadtall'}),
Group("SYS", {'layout': 'monadtall'}),
Group("DOC", {'layout': 'monadtall'}),
Group("VBOX", {'layout': 'monadtall'}),
Group("CHAT", {'layout': 'monadtall'}),
Group("MUS", {'layout': 'monadtall'}),
Group("VID", {'layout': 'monadtall'}),
Group("GFX", {'layout': 'floating'})]
groups = [Group("DEV", layout='monadtall'),
Group("WWW", layout='monadtall'),
Group("SYS", layout='monadtall'),
Group("SYS", layout='monadtall'),
Group("DOC", layout='monadtall'),
Group("VBOX", layout='monadtall'),
Group("CHAT", layout='monadtall'),
Group("MUS", layout='monadtall'),
Group("VID", layout='monadtall'),
Group("GFX", layout='floating')]
# Allow MODKEY+[0 through 9] to bind to groups, see https://docs.qtile.org/en/stable/manual/config/groups.html
# MOD4 + index Number : Switch to Group[index]

View File

@ -215,15 +215,16 @@ keys = [
])
]
groups = [Group("WWW", {'layout': 'monadtall'}),
Group("DEV", {'layout': 'monadtall'}),
Group("SYS", {'layout': 'monadtall'}),
Group("DOC", {'layout': 'monadtall'}),
Group("VBOX", {'layout': 'monadtall'}),
Group("CHAT", {'layout': 'monadtall'}),
Group("MUS", {'layout': 'monadtall'}),
Group("VID", {'layout': 'monadtall'}),
Group("GFX", {'layout': 'floating'})]
groups = [Group("DEV", layout='monadtall'),
Group("WWW", layout='monadtall'),
Group("SYS", layout='monadtall'),
Group("SYS", layout='monadtall'),
Group("DOC", layout='monadtall'),
Group("VBOX", layout='monadtall'),
Group("CHAT", layout='monadtall'),
Group("MUS", layout='monadtall'),
Group("VID", layout='monadtall'),
Group("GFX", layout='floating')]
# Allow MODKEY+[0 through 9] to bind to groups, see https://docs.qtile.org/en/stable/manual/config/groups.html
# MOD4 + index Number : Switch to Group[index]