From a2dbbbe49eacfa249b2b60c6e81c8887e571a583 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Thu, 4 Nov 2021 08:40:49 -0500 Subject: [PATCH] Fixing broken workspaces. --- .config/nitrogen/nitrogen.cfg | 2 +- .config/qtile/README.org | 19 ++++++++++--------- .config/qtile/config.py | 19 ++++++++++--------- 3 files changed, 21 insertions(+), 19 deletions(-) diff --git a/.config/nitrogen/nitrogen.cfg b/.config/nitrogen/nitrogen.cfg index 119ed4b..7372c90 100644 --- a/.config/nitrogen/nitrogen.cfg +++ b/.config/nitrogen/nitrogen.cfg @@ -1,5 +1,5 @@ [geometry] -posx=16 +posx=3856 posy=40 sizex=1884 sizey=1020 diff --git a/.config/qtile/README.org b/.config/qtile/README.org index 6fcddc1..a274cee 100644 --- a/.config/qtile/README.org +++ b/.config/qtile/README.org @@ -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] diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 22a7339..d08dc3f 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -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]