mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 19:46:20 +00:00
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
import Hyprland from "resource:///com/github/Aylur/ags/service/hyprland.js";
|
|
import Applications from "resource:///com/github/Aylur/ags/service/applications.js";
|
|
import Widget from "resource:///com/github/Aylur/ags/widget.js";
|
|
import PanelButton from "../PanelButton.js";
|
|
import { launchApp } from "../../utils.js";
|
|
import icons from "../../icons.js";
|
|
|
|
const focus = ({ address }) =>
|
|
Hyprland.sendMessage(`dispatch focuswindow address:${address}`);
|
|
|
|
/** @param {import('types/widgets/box').default} box */
|
|
const setChildren = (box) =>
|
|
(box.children = Hyprland.clients.map((client) => {
|
|
if (Hyprland.active.workspace.id !== client.workspace.id) return;
|
|
|
|
for (const app of Applications.list) {
|
|
if (client.class && app.match(client.class)) {
|
|
return PanelButton({
|
|
content: Widget.Icon(app.icon_name || icons.fallback.executable),
|
|
tooltip_text: app.name,
|
|
on_primary_click: () => focus(client),
|
|
on_middle_click: () => launchApp(app),
|
|
});
|
|
}
|
|
}
|
|
}));
|
|
|
|
export default () =>
|
|
Widget.Box()
|
|
.hook(Hyprland, setChildren, "notify::clients")
|
|
.hook(Hyprland, setChildren, "notify::active");
|