Closes #22 - Implemented numbered workspace identifiers. (#31)

This commit is contained in:
Jas Singh
2024-07-28 17:51:16 -07:00
committed by GitHub
parent 3dc5bbbe13
commit f09f4ad6bd
6 changed files with 55 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
import options from "options";
const { show_numbered, show_icons } = options.bar.workspaces;
show_numbered.connect("changed", ({ value }) => {
if (value === true) {
show_icons.value = false;
}
})
show_icons.connect("changed", ({ value }) => {
if (value === true) {
show_numbered.value = false;
}
})