15
widget/settings/side_effects/index.ts
Normal file
15
widget/settings/side_effects/index.ts
Normal 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;
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user