Files
custum-hyprpanel/widget/settings/side_effects/index.ts

16 lines
334 B
TypeScript

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;
}
})