summaryrefslogtreecommitdiff
path: root/src/utils/system.ts
blob: 5d779085563a2eb4bef9a8b7445773ffddcda08f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { execAsync, GLib } from "astal";
import type AstalApps from "gi://AstalApps";
import { osIcons } from "./icons";

export const launch = (app: AstalApps.Application) => {
    execAsync(["uwsm", "app", "--", app.entry]).catch(() => {
        app.frequency--; // Decrement frequency cause launch also increments it
        app.launch();
    });
    app.frequency++;
};

export const osId = GLib.get_os_info("ID") ?? "unknown";
export const osIdLike = GLib.get_os_info("ID_LIKE");
export const osIcon = String.fromCodePoint(
    (() => {
        if (osIcons.hasOwnProperty(osId)) return osIcons[osId];
        if (osIdLike) for (const id of osIdLike.split(" ")) if (osIcons.hasOwnProperty(id)) return osIcons[id];
        return 0xf31a;
    })()
);