diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-08-24 17:52:01 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-08-24 17:52:01 -0400 |
commit | a89b5de62fab0bcf9985258194be89c62cd51861 (patch) | |
tree | 8f0c65d8fae7d06b6ee6b827be062e76f1602461 /init.el | |
parent | Modify formatting for `display-battery-mode~ (diff) | |
download | mmosmacs-a89b5de62fab0bcf9985258194be89c62cd51861.tar.gz mmosmacs-a89b5de62fab0bcf9985258194be89c62cd51861.tar.bz2 mmosmacs-a89b5de62fab0bcf9985258194be89c62cd51861.zip |
Add more default named workspaces
Diffstat (limited to 'init.el')
-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)))) |