diff options
-rw-r--r-- | init.el | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -174,12 +174,14 @@ | |||
174 | :straight t | 174 | :straight t |
175 | :config | 175 | :config |
176 | (require 'exwm-config) | 176 | (require 'exwm-config) |
177 | (setq exwm-workspace-number 4 | 177 | (setq exwm-workspace-number 6 |
178 | exwm-workspace-index-map (lambda (index) | 178 | exwm-workspace-index-map (lambda (index) |
179 | (let ((named-workspaces ["0:Admin" | 179 | (let ((named-workspaces ["0:Admin" |
180 | "1:Agenda" | 180 | "1:Agenda" |
181 | "2:KB" | 181 | "2:KB" |
182 | "3:IDE"])) | 182 | "3:IDE" |
183 | "4:School" | ||
184 | "5:Reading"])) | ||
183 | (if (< index (length named-workspaces)) | 185 | (if (< index (length named-workspaces)) |
184 | (elt named-workspaces index) | 186 | (elt named-workspaces index) |
185 | (number-to-string index)))) | 187 | (number-to-string index)))) |