nixos-configs/config/ags/js/bar/workspaces.js

48 lines
1.3 KiB
JavaScript
Raw Normal View History

2023-09-04 00:41:14 -04:00
const { Hyprland, Applications } = ags.Service;
const { execAsync } = ags.Utils;
const { Box, Button, Label, Revealer } = ags.Widget;
2023-09-04 00:41:14 -04:00
import { EventBox } from '../common.js';
2023-09-05 19:57:34 -04:00
const WorkspaceModule = ({ i } = {}) =>
Revealer({
transition: "slide_right",
child: EventBox({
onPrimaryClickRelease: () => execAsync(`hyprctl dispatch workspace ${i}`).catch(print),
child: Box({
className: 'button',
child: Label(`${i}`),
connections: [
[Hyprland, btn => {
const occupied = Hyprland.getWorkspace(i)?.windows > 0;
btn.toggleClassName('active', Hyprland.active.workspace.id === i);
btn.toggleClassName('occupied', occupied);
btn.toggleClassName('empty', !occupied);
}]
],
}),
2023-09-04 00:41:14 -04:00
}),
});
2023-09-05 19:57:34 -04:00
const Workspace = props => Box({
className: 'workspaces',
2023-09-04 00:41:14 -04:00
children: [EventBox({
child: Box({
2023-09-05 19:57:34 -04:00
children: Array.from({ length: 15 }, (_, i) => i + 1).map(i => WorkspaceModule({ i: i})),
2023-09-04 00:41:14 -04:00
connections: [[Hyprland, box => {
let workspaces = [];
Hyprland.workspaces.forEach(ws => {
if (ws.id > 0) workspaces.push(ws);
});
2023-09-04 00:41:14 -04:00
box.children.forEach(rev => rev.reveal_child = false);
workspaces.forEach(ws => {
box.children[ws.id - 1].reveal_child = true;
2023-09-04 00:41:14 -04:00
});
}]],
}),
})],
});
2023-09-05 19:57:34 -04:00
export const Workspaces = Workspace();