aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-08-24 17:52:01 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-08-24 17:52:01 -0400
commita89b5de62fab0bcf9985258194be89c62cd51861 (patch)
tree8f0c65d8fae7d06b6ee6b827be062e76f1602461
parentModify formatting for `display-battery-mode~ (diff)
downloadmmosmacs-a89b5de62fab0bcf9985258194be89c62cd51861.tar.gz
mmosmacs-a89b5de62fab0bcf9985258194be89c62cd51861.tar.bz2
mmosmacs-a89b5de62fab0bcf9985258194be89c62cd51861.zip
Add more default named workspaces
-rw-r--r--init.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/init.el b/init.el
index 4d3a210..13b46cd 100644
--- a/init.el
+++ b/init.el
@@ -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))))