nichts/nyx/homes/notashelf/services/wayland/ags/js/utils/hyprland.js
2024-04-09 23:11:33 +02:00

12 lines
382 B
JavaScript

import { Hyprland } from "../imports.js";
export const getFocusedWorkspace = (self) =>
self.children.forEach((btn) => {
btn.className =
btn.attribute.index === Hyprland.active.workspace.id
? "focused"
: "";
btn.visible = Hyprland.workspaces.some(
(ws) => ws.id === btn.attribute.index,
);
});