feat(ags bar workspace): handle urgent windows
This commit is contained in:
parent
353800f52b
commit
ad27c6d6fc
2 changed files with 29 additions and 7 deletions
|
@ -19,11 +19,27 @@ const Workspace = ({ i } = {}) =>
|
||||||
child: Box({
|
child: Box({
|
||||||
valign: 'center',
|
valign: 'center',
|
||||||
className: 'button',
|
className: 'button',
|
||||||
connections: [[Hyprland, self => {
|
setup: self => {
|
||||||
const occupied = Hyprland.getWorkspace(i)?.windows > 0;
|
self.update = addr => {
|
||||||
self.toggleClassName('occupied', occupied);
|
const occupied = Hyprland.getWorkspace(i)?.windows > 0;
|
||||||
self.toggleClassName('empty', !occupied);
|
self.toggleClassName('occupied', occupied);
|
||||||
}]],
|
self.toggleClassName('empty', !occupied);
|
||||||
|
|
||||||
|
// Deal with urgent windows
|
||||||
|
if (Hyprland.getClient(addr)?.workspace.id === i)
|
||||||
|
self.toggleClassName('urgent', true);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
connections: [
|
||||||
|
[Hyprland, self => self.update()],
|
||||||
|
|
||||||
|
// Deal with urgent windows
|
||||||
|
[Hyprland, (self, addr) => self.update(addr), 'urgent-window'],
|
||||||
|
[Hyprland.active.workspace, self => {
|
||||||
|
if (Hyprland.active.workspace.id === i)
|
||||||
|
self.toggleClassName('urgent', false);
|
||||||
|
}],
|
||||||
|
],
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
|
@ -14,13 +14,19 @@
|
||||||
|
|
||||||
.empty {
|
.empty {
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
transition: border-color 0.25s linear;
|
transition: background-color 0.6s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
.occupied {
|
.occupied {
|
||||||
border: 2px solid $bg;
|
border: 2px solid $bg;
|
||||||
background: $contrast-bg;
|
background: $contrast-bg;
|
||||||
transition: border-color 0.25s linear;
|
transition: background-color 0.6s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.urgent {
|
||||||
|
border: 2px solid $bg;
|
||||||
|
background: red;
|
||||||
|
transition: background-color 0.6s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
.active {
|
.active {
|
||||||
|
|
Loading…
Reference in a new issue