feat: migrate to ags v3

This commit is contained in:
tux
2025-09-24 16:39:34 +05:30
parent 6437cad620
commit 9649ab0b6e
26 changed files with 330 additions and 451 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
node_modules/ node_modules/
@girs/ @girs/
env.d.ts

10
app.ts
View File

@@ -1,16 +1,14 @@
import { App } from "astal/gtk4"; import app from "ags/gtk4/app";
import GLib from "gi://GLib";
import style from "./style.scss"; import style from "./style.scss";
import windows from "./windows"; import windows from "./windows";
import GLib from "gi://GLib";
import { reqHandler } from "./handler";
const icons = `${GLib.get_user_config_dir()}/tpanel/assets/icons`; const icons = `${GLib.get_user_config_dir()}/tpanel/assets/icons`;
App.start({ app.start({
css: style, css: style,
icons: icons, icons: icons,
requestHandler: reqHandler,
main() { main() {
windows.map((win) => App.get_monitors().map(win)); windows.map((win) => app.get_monitors().map(win));
}, },
}); });

39
flake.lock generated
View File

@@ -8,11 +8,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1744557573, "lastModified": 1758577685,
"narHash": "sha256-XAyj0iDuI51BytJ1PwN53uLpzTDdznPDQFG4RwihlTQ=", "narHash": "sha256-iHT0kvsQJG+Z89quGi7rNCXEg2e3DBGfuuCMu/UwiIo=",
"owner": "aylur", "owner": "aylur",
"repo": "ags", "repo": "ags",
"rev": "3ed9737bdbc8fc7a7c7ceef2165c9109f336bff6", "rev": "aa7a8a2dd6e54aaeb4e13a73ed3bc2283995090b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -29,31 +29,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1742571008, "lastModified": 1756474652,
"narHash": "sha256-5WgfJAeBpxiKbTR/gJvxrGYfqQRge5aUDcGKmU1YZ1Q=", "narHash": "sha256-iiBU6itpEqE0spXeNJ3uJTfioSyKYjt5bNepykpDXTE=",
"owner": "aylur", "owner": "aylur",
"repo": "astal", "repo": "astal",
"rev": "dc0e5d37abe9424c53dcbd2506a4886ffee6296e", "rev": "20bd8318e4136fbd3d4eb2d64dbabc3acbc915dd",
"type": "github"
},
"original": {
"owner": "aylur",
"repo": "astal",
"type": "github"
}
},
"astal_2": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1748416910,
"narHash": "sha256-FEQcs58HL8Fe4i7XlqVEUwthjxwvRvgX15gTTfW17sU=",
"owner": "aylur",
"repo": "astal",
"rev": "c1bd89a47c81c66ab5fc6872db5a916c0433fb89",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -64,11 +44,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1748026106, "lastModified": 1758427187,
"narHash": "sha256-6m1Y3/4pVw1RWTsrkAK2VMYSzG4MMIj7sqUy7o8th1o=", "narHash": "sha256-pHpxZ/IyCwoTQPtFIAG2QaxuSm8jWzrzBGjwQZIttJc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "063f43f2dbdef86376cc29ad646c45c46e93234c", "rev": "554be6495561ff07b6c724047bdd7e0716aa7b46",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -81,7 +61,6 @@
"root": { "root": {
"inputs": { "inputs": {
"ags": "ags", "ags": "ags",
"astal": "astal_2",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
} }
} }

View File

@@ -1,11 +1,9 @@
{ {
description = "tux's widgets for wayland"; description = "tux's widgets for wayland";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
astal = {
url = "github:aylur/astal";
inputs.nixpkgs.follows = "nixpkgs";
};
ags = { ags = {
url = "github:aylur/ags"; url = "github:aylur/ags";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@@ -15,29 +13,54 @@
outputs = { outputs = {
self, self,
nixpkgs, nixpkgs,
astal,
ags, ags,
}: let }: let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
pname = "tpanel";
entry = "app.ts";
agsPackages = with ags.packages.${system}; [
io
astal4
hyprland
apps
battery
tray
network
notifd
];
extraPackages =
agsPackages
++ [
pkgs.libadwaita
];
in { in {
packages.${system} = { packages.${system} = {
default = let default = let
tpanel = ags.lib.bundle { tpanel = pkgs.stdenv.mkDerivation {
inherit pkgs; name = pname;
src = ./.; src = ./.;
name = "tpanel";
entry = "app.ts";
gtk4 = true;
extraPackages = with ags.packages.${system}; [ nativeBuildInputs = with pkgs; [
hyprland wrapGAppsHook
apps gobject-introspection
battery ags.packages.${system}.default
tray
network
notifd
]; ];
buildInputs = extraPackages ++ [pkgs.gjs];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
mkdir -p $out/share
cp -r * $out/share
ags bundle ${entry} $out/bin/${pname} -d "SRC='$out/share'"
runHook postInstall
'';
}; };
in in
pkgs.runCommand "tpanel" { pkgs.runCommand "tpanel" {
@@ -67,7 +90,7 @@
''; '';
astal = astal.packages.${system}; ags = ags.packages.${system};
}; };
apps.default = { apps.default = {
@@ -77,20 +100,9 @@
devShells.${system} = { devShells.${system} = {
default = pkgs.mkShell { default = pkgs.mkShell {
nativeBuildInputs = [
astal.packages.${system}.default
];
buildInputs = [ buildInputs = [
# includes astal3 astal4 astal-io by default
(ags.packages.${system}.default.override { (ags.packages.${system}.default.override {
extraPackages = with ags.packages.${system}; [ inherit extraPackages;
hyprland
apps
battery
tray
network
notifd
];
}) })
]; ];
}; };

View File

@@ -1,14 +0,0 @@
import { App } from "astal/gtk4";
import { WINDOW_NAME } from "./widgets/bar";
export const reqHandler = (req: string, res: (res: any) => void) => {
switch (req) {
case "toggle-bar":
const win = App.get_window(WINDOW_NAME);
win?.is_visible() ? win.hide() : win?.set_visible(true);
break;
default:
res("uknown command");
}
};

35
package-lock.json generated
View File

@@ -1,35 +0,0 @@
{
"name": "astal-shell",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "astal-shell",
"dependencies": {
"astal": "/nix/store/8cl58ip2nasg6rdyj59cwg2f0qbixs28-astal-gjs/share/astal/gjs",
"typescript": "^5.7.3"
}
},
"../../../../nix/store/8cl58ip2nasg6rdyj59cwg2f0qbixs28-astal-gjs/share/astal/gjs": {
"name": "astal",
"license": "LGPL-2.1"
},
"node_modules/astal": {
"resolved": "../../../../nix/store/8cl58ip2nasg6rdyj59cwg2f0qbixs28-astal-gjs/share/astal/gjs",
"link": true
},
"node_modules/typescript": {
"version": "5.7.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz",
"integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==",
"license": "Apache-2.0",
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
}
}
}

View File

@@ -1,7 +0,0 @@
{
"name": "astal-shell",
"dependencies": {
"astal": "/nix/store/8cl58ip2nasg6rdyj59cwg2f0qbixs28-astal-gjs/share/astal/gjs",
"typescript": "^5.7.3"
}
}

View File

@@ -1,14 +1,10 @@
{ {
"$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": {
"compilerOptions": { "jsx": "react-jsx",
"experimentalDecorators": true, "jsxImportSource": "ags/gtk4",
"strict": true, "module": "ES2022",
"target": "ES2022", "moduleResolution": "Bundler",
"module": "ES2022", "strict": true,
"moduleResolution": "Bundler", "target": "ES2020"
// "checkJs": true, }
// "allowJs": true,
"jsx": "react-jsx",
"jsxImportSource": "astal/gtk4",
}
} }

View File

@@ -1,13 +1,16 @@
import { Variable } from "astal"; import { createState, For } from "ags";
import { App, Astal, Gdk, Gtk, hook } from "astal/gtk4"; import { Astal, Gdk, Gtk } from "ags/gtk4";
import app from "ags/gtk4/app";
import AstalApps from "gi://AstalApps"; import AstalApps from "gi://AstalApps";
export const WINDOW_NAME = "app-launcher"; export const WINDOW_NAME = "app-launcher";
let searchEntry: Gtk.Entry;
const apps = new AstalApps.Apps(); const apps = new AstalApps.Apps();
const text = Variable(""); const [searchText, setSearchText] = createState("");
const hide = () => { const hide = () => {
App.get_window(WINDOW_NAME)?.set_visible(false); app.get_window(WINDOW_NAME)?.set_visible(false);
}; };
const AppButton = ({ app }: { app: AstalApps.Application }) => { const AppButton = ({ app }: { app: AstalApps.Application }) => {
@@ -29,42 +32,29 @@ const AppButton = ({ app }: { app: AstalApps.Application }) => {
}; };
const AppList = () => { const AppList = () => {
const appList = text((text) => apps.fuzzy_query(text)); const appList = searchText((text) => apps.fuzzy_query(text));
return ( return (
<Gtk.ScrolledWindow vexpand heightRequest={500} widthRequest={300}> <Gtk.ScrolledWindow vexpand heightRequest={500} widthRequest={300}>
<box vertical spacing={6} cssClasses={["list"]}> <box
{appList.as((list) => list.map((app) => <AppButton app={app} />))} spacing={6}
orientation={Gtk.Orientation.VERTICAL}
cssClasses={["list"]}
>
<For each={appList}>{(app) => <AppButton app={app} />}</For>
</box> </box>
</Gtk.ScrolledWindow> </Gtk.ScrolledWindow>
); );
}; };
const AppSearch = () => { const AppSearch = () => {
const onEnter = () => {
apps.fuzzy_query(text.get())?.[0].launch();
hide();
};
return ( return (
<entry <entry
$={(ref) => (searchEntry = ref)}
cssClasses={["search"]} cssClasses={["search"]}
vexpand text={searchText}
text={text.get()}
placeholderText="Search..." placeholderText="Search..."
onChanged={(self) => text.set(self.text)} onNotifyText={({ text }) => setSearchText(text)}
onActivate={onEnter}
setup={(self) => {
hook(self, App, "window-toggled", (_, win) => {
const winName = win.name;
const visible = win.visible;
if (winName == WINDOW_NAME && visible) {
text.set("");
self.set_text("");
self.grab_focus();
}
});
}}
/> />
); );
}; };
@@ -75,16 +65,17 @@ export const AppLauncher = (gdkmonitor: Gdk.Monitor) => {
name={WINDOW_NAME} name={WINDOW_NAME}
cssClasses={["app-launcher"]} cssClasses={["app-launcher"]}
gdkmonitor={gdkmonitor} gdkmonitor={gdkmonitor}
application={app}
exclusivity={Astal.Exclusivity.EXCLUSIVE} exclusivity={Astal.Exclusivity.EXCLUSIVE}
application={App}
keymode={Astal.Keymode.ON_DEMAND} keymode={Astal.Keymode.ON_DEMAND}
onKeyPressed={(_, keyval) => { onNotifyVisible={({ visible }) => {
if (keyval === Gdk.KEY_Escape) { if (visible) searchEntry.grab_focus();
App.toggle_window(WINDOW_NAME); else searchEntry.set_text("");
}
}} }}
> >
<box vertical spacing={6}> <Gtk.EventControllerKey onKeyPressed={onKey} />
<box orientation={Gtk.Orientation.VERTICAL} spacing={6}>
<AppSearch /> <AppSearch />
<Gtk.Separator orientation={Gtk.Orientation.HORIZONTAL} /> <Gtk.Separator orientation={Gtk.Orientation.HORIZONTAL} />
<AppList /> <AppList />
@@ -92,3 +83,15 @@ export const AppLauncher = (gdkmonitor: Gdk.Monitor) => {
</window> </window>
); );
}; };
const onKey = (
_e: Gtk.EventControllerKey,
keyval: number,
_: number,
mod: number,
) => {
if (keyval === Gdk.KEY_Escape) {
app.toggle_window(WINDOW_NAME);
return;
}
};

View File

@@ -1,14 +1,15 @@
import { bind, Variable } from "astal"; import { createBinding, createComputed } from "ags";
import AstalBattery from "gi://AstalBattery"; import AstalBattery from "gi://AstalBattery";
export const Battery = () => { export const Battery = () => {
const battery = AstalBattery.get_default(); const battery = AstalBattery.get_default();
const chargingIcon = Variable.derive(
[ const percentage = createBinding(battery, "percentage");
bind(battery, "percentage"), const charging = createBinding(battery, "charging");
bind(battery, "charging"), const state = createBinding(battery, "state");
bind(battery, "state"),
], const chargingIcon = createComputed(
[percentage, charging, state],
(percentage, charging, state) => { (percentage, charging, state) => {
const batFull = state === AstalBattery.State.FULLY_CHARGED; const batFull = state === AstalBattery.State.FULLY_CHARGED;
const p = percentage * 100; const p = percentage * 100;
@@ -21,11 +22,13 @@ export const Battery = () => {
); );
return ( return (
<box cssClasses={["pill"]} visible={bind(battery, "isPresent")} spacing={5}> <box
<image iconName={chargingIcon()} onDestroy={() => chargingIcon.drop()} /> cssClasses={["pill"]}
<label visible={createBinding(battery, "isPresent")}
label={bind(battery, "percentage").as((p) => `${Math.floor(p * 100)}%`)} spacing={5}
/> >
<image iconName={chargingIcon} />
<label label={percentage((p) => `${Math.floor(p * 100)}%`)} />
</box> </box>
); );
}; };

View File

@@ -1,7 +1,7 @@
import { bind, Variable } from "astal"; import { createPoll } from "ags/time";
export const CPU = () => { export const CPU = () => {
const cpu = Variable("").poll(5000, [ const cpu = createPoll("", 5000, [
"bash", "bash",
"-c", "-c",
"cat /sys/class/thermal/thermal_zone*/temp", "cat /sys/class/thermal/thermal_zone*/temp",
@@ -10,7 +10,7 @@ export const CPU = () => {
return ( return (
<box cssClasses={["pill"]} spacing={5}> <box cssClasses={["pill"]} spacing={5}>
<image iconName="fa-cpu-symbolic" /> <image iconName="fa-cpu-symbolic" />
<label label={bind(cpu).as((val) => `${parseInt(val) / 1000} °C`)} /> <label label={cpu((val) => `${parseInt(val) / 1000} °C`)} />
</box> </box>
); );
}; };

View File

@@ -1,12 +1,12 @@
import { bind, Variable } from "astal"; import { createPoll } from "ags/time";
export const GPU = () => { export const GPU = () => {
const gpu = Variable("").poll(5000, ["bash", "-c", "supergfxctl -g"]); const gpu = createPoll("", 5000, ["bash", "-c", "supergfxctl -g"]);
return ( return (
<box cssClasses={["pill"]} spacing={5}> <box cssClasses={["pill"]} spacing={5}>
<image iconName="fa-video-card-symbolic" /> <image iconName="fa-video-card-symbolic" />
<label label={bind(gpu).as((val) => val)} /> <label label={gpu((val) => val)} />
</box> </box>
); );
}; };

View File

@@ -1,14 +1,15 @@
import { App, Astal, Gdk } from "astal/gtk4"; import { Astal, Gdk } from "ags/gtk4";
import { FocusedClient, WorkspaceButton } from "./workspace"; import app from "ags/gtk4/app";
import { Battery } from "./battery"; import { Battery } from "./battery";
import { Tailscale } from "./tailscale"; import { CPU } from "./cpu";
import { Time } from "./time"; import { GPU } from "./gpu";
import { Launcher } from "./launcher";
import { Network } from "./network"; import { Network } from "./network";
import { Profile } from "./profile"; import { Profile } from "./profile";
import { GPU } from "./gpu"; import { Tailscale } from "./tailscale";
import { CPU } from "./cpu"; import { Time } from "./time";
import { Launcher } from "./launcher";
import { Tray } from "./tray"; import { Tray } from "./tray";
import { FocusedClient, WorkspaceButton } from "./workspace";
export const WINDOW_NAME = "bar"; export const WINDOW_NAME = "bar";
@@ -23,41 +24,29 @@ export const Bar = (gdkmonitor: Gdk.Monitor) => {
gdkmonitor={gdkmonitor} gdkmonitor={gdkmonitor}
exclusivity={Astal.Exclusivity.EXCLUSIVE} exclusivity={Astal.Exclusivity.EXCLUSIVE}
anchor={TOP | LEFT | RIGHT} anchor={TOP | LEFT | RIGHT}
application={App} application={app}
> >
<centerbox> <centerbox>
<Start /> <box spacing={10} $type="start">
<Center /> <Launcher />
<End /> <WorkspaceButton />
</box>
<box spacing={10} $type="center">
<FocusedClient />
</box>
<box spacing={10} $type="end">
<Network />
<CPU />
<GPU />
<Profile />
<Tailscale />
<Battery />
<Tray />
<Time />
</box>
</centerbox> </centerbox>
</window> </window>
); );
}; };
const Start = () => {
return (
<box spacing={10}>
<Launcher />
<WorkspaceButton />
</box>
);
};
const Center = () => {
return <FocusedClient />;
};
const End = () => {
return (
<box spacing={10}>
<Network />
<CPU />
<GPU />
<Profile />
<Tailscale />
<Battery />
<Tray />
<Time />
</box>
);
};

View File

@@ -1,12 +1,12 @@
import { App } from "astal/gtk4"; import { Gdk } from "ags/gtk4";
import app from "ags/gtk4/app";
import { WINDOW_NAME } from "../app-launcher"; import { WINDOW_NAME } from "../app-launcher";
import { Gdk } from "astal/gtk4";
export const Launcher = () => { export const Launcher = () => {
return ( return (
<button <button
cssClasses={["pill", "launcher"]} cssClasses={["pill", "launcher"]}
onClicked={() => App.toggle_window(WINDOW_NAME)} onClicked={() => app.toggle_window(WINDOW_NAME)}
cursor={Gdk.Cursor.new_from_name("pointer", null)} cursor={Gdk.Cursor.new_from_name("pointer", null)}
> >
<image iconName="nix-symbolic" /> <image iconName="nix-symbolic" />

View File

@@ -1,21 +1,14 @@
import { bind } from "astal";
import AstalNetwork from "gi://AstalNetwork"; import AstalNetwork from "gi://AstalNetwork";
export const Network = () => { export const Network = () => {
const network = AstalNetwork.get_default(); const network = AstalNetwork.get_default();
const wifi = bind(network, "wifi");
return ( return (
<box cssClasses={["pill"]} visible={wifi.as(Boolean)}> <box cssClasses={["pill"]}>
{wifi.as( <box spacing={5}>
(wifi) => <image iconName="fa-wifi-symbolic" />
wifi && ( <label label={network.wifi.ssid} />
<box spacing={5}> </box>
<image iconName="fa-wifi-symbolic" />
<label label={bind(wifi, "ssid")} />
</box>
),
)}
</box> </box>
); );
}; };

View File

@@ -1,13 +1,13 @@
import { bind, Variable } from "astal"; import { createPoll } from "ags/time";
export const Profile = () => { export const Profile = () => {
const profile = Variable("").poll(5000, ["bash", "-c", "asusctl profile -p"]); const profile = createPoll("", 5000, ["bash", "-c", "asusctl profile -p"]);
return ( return (
<box cssClasses={["pill"]} spacing={5}> <box cssClasses={["pill"]} spacing={5}>
<image iconName="fa-speed-symbolic" /> <image iconName="fa-speed-symbolic" />
<label <label
label={bind(profile).as((val) => { label={profile((val) => {
const data = val.split(" "); const data = val.split(" ");
return data[data.length - 1]; return data[data.length - 1];
})} })}

View File

@@ -1,7 +1,7 @@
import { bind, Variable } from "astal"; import { createPoll } from "ags/time";
export const Tailscale = () => { export const Tailscale = () => {
const tailscale = Variable("").poll(5000, [ const tailscale = createPoll("", 5000, [
"bash", "bash",
"-c", "-c",
"tailscale ping homelab", "tailscale ping homelab",
@@ -10,8 +10,9 @@ export const Tailscale = () => {
return ( return (
<box cssClasses={["pill"]} spacing={5}> <box cssClasses={["pill"]} spacing={5}>
<image iconName="fa-home-symbolic" /> <image iconName="fa-home-symbolic" />
<label <label
label={bind(tailscale).as((val) => { label={tailscale((val) => {
const data = val.split(" "); const data = val.split(" ");
return data[data.length - 1]; return data[data.length - 1];
})} })}

View File

@@ -1,12 +1,12 @@
import { GLib, Variable } from "astal"; import { createPoll } from "ags/time";
import GLib from "gi://GLib";
export const Time = () => { export const Time = () => {
const time = Variable("").poll( const time = createPoll(
"",
1000, 1000,
() => GLib.DateTime.new_now_local().format("%a %b %d - %I:%M:%S %p")!, () => GLib.DateTime.new_now_local().format("%a %b %d - %I:%M:%S %p")!,
); );
return ( return <label cssClasses={["pill"]} label={time} />;
<label cssClasses={["pill"]} onDestroy={() => time.drop()} label={time()} />
);
}; };

View File

@@ -1,14 +1,13 @@
import { bind } from "astal"; import { createBinding, For } from "ags";
import AstalTray from "gi://AstalTray"; import AstalTray from "gi://AstalTray";
const tray = AstalTray.get_default();
export const Tray = () => { export const Tray = () => {
const tray = AstalTray.get_default();
const items = createBinding(tray, "items");
return ( return (
<box cssClasses={["pill", "tray"]}> <box cssClasses={["pill", "tray"]}>
{bind(tray, "items").as((items) => <For each={items}>{(item) => <Item item={item} />}</For>
items.map((item) => <Item item={item} />),
)}
</box> </box>
); );
}; };
@@ -16,7 +15,7 @@ export const Tray = () => {
const Item = ({ item }: { item: AstalTray.TrayItem }) => { const Item = ({ item }: { item: AstalTray.TrayItem }) => {
return ( return (
<menubutton> <menubutton>
<image gicon={bind(item, "gicon")} /> <image gicon={createBinding(item, "gicon")} />
</menubutton> </menubutton>
); );
}; };

View File

@@ -1,37 +1,33 @@
import { Variable, bind } from "astal"; import { createBinding, createComputed } from "ags";
import { Gdk, Gtk } from "astal/gtk4"; import { Gdk, Gtk } from "ags/gtk4";
import { ButtonProps } from "astal/gtk4/widget";
import AstalHyprland from "gi://AstalHyprland"; import AstalHyprland from "gi://AstalHyprland";
type WsButtonProps = ButtonProps & { type WsButtonProps = {
ws: AstalHyprland.Workspace; ws: AstalHyprland.Workspace;
}; };
const Workspace = ({ ws, ...props }: WsButtonProps) => { const Workspace = ({ ws }: WsButtonProps) => {
const hyprland = AstalHyprland.get_default(); const hyprland = AstalHyprland.get_default();
const classNames = Variable.derive( const focusedWorkspace = createBinding(hyprland, "focusedWorkspace");
[bind(hyprland, "focusedWorkspace"), bind(hyprland, "clients")],
(fws, _) => {
const classes = ["workspace-button"];
const active = fws.id == ws.id; const classNames = createComputed([focusedWorkspace], (fws) => {
active && classes.push("active"); const classes = ["workspace-button"];
const occupied = hyprland.get_workspace(ws.id)?.get_clients().length > 0; const active = fws.id == ws.id;
occupied && classes.push("occupied"); active && classes.push("active");
return classes;
}, const occupied = hyprland.get_workspace(ws.id)?.get_clients().length > 0;
); occupied && classes.push("occupied");
return classes;
});
return ( return (
<button <button
cssClasses={classNames()} cssClasses={classNames}
onDestroy={() => classNames.drop()}
valign={Gtk.Align.CENTER} valign={Gtk.Align.CENTER}
halign={Gtk.Align.CENTER} halign={Gtk.Align.CENTER}
onClicked={() => ws.focus()} onClicked={() => ws.focus()}
cursor={Gdk.Cursor.new_from_name("pointer", null)} cursor={Gdk.Cursor.new_from_name("pointer", null)}
{...props}
/> />
); );
}; };
@@ -49,14 +45,11 @@ export const WorkspaceButton = () => {
export const FocusedClient = () => { export const FocusedClient = () => {
const hyprland = AstalHyprland.get_default(); const hyprland = AstalHyprland.get_default();
const focused = bind(hyprland, "focusedClient"); const focused = createBinding(hyprland, "focusedClient");
return ( return (
<box cssClasses={["focused-client"]} visible={focused.as(Boolean)}> <box cssClasses={["focused-client"]} visible={focused.as(Boolean)}>
{focused.as( <label label={focused((client) => client.title)} />
(client) =>
client && <label label={bind(client, "initialTitle").as(String)} />,
)}
</box> </box>
); );
}; };

View File

@@ -1 +0,0 @@
export * from "./picture";

View File

@@ -1,11 +0,0 @@
import { ConstructProps } from "astal/gtk4";
import { astalify, Gtk } from "astal/gtk4";
export type PictureProps = ConstructProps<
Gtk.Picture,
Gtk.Picture.ConstructorProps
>;
export const Picture = astalify<Gtk.Picture, Gtk.Picture.ConstructorProps>(
Gtk.Picture,
);

View File

@@ -1,21 +0,0 @@
import { Gtk } from "astal/gtk4";
import Notifd from "gi://AstalNotifd";
import { fileExists, isIcon } from "./notifd";
export const Icon = (notification: Notifd.Notification) => {
const icon =
notification.image || notification.appIcon || notification.desktopEntry;
if (!icon) return null;
if (fileExists(icon))
return (
<box hexpand={false} vexpand={false} valign={Gtk.Align.CENTER}>
<image file={icon} />
</box>
);
else if (isIcon(icon))
return (
<box hexpand={false} vexpand={false} valign={Gtk.Align.CENTER}>
<image iconName={icon} />
</box>
);
};

View File

@@ -1,28 +1,49 @@
import { Astal, Gdk } from "astal/gtk4"; import { For, createState, onCleanup } from "ags";
import Notifd from "gi://AstalNotifd"; import { Astal, Gdk, Gtk } from "ags/gtk4";
import { bind } from "astal"; import AstalNotifd from "gi://AstalNotifd";
import { NotificationWidget } from "./notification"; import { Notification } from "./notification";
export const WINDOW_NAME = "notifications"; export const WINDOW_NAME = "notifications";
export const Notifications = (gdkmonitor: Gdk.Monitor) => { export const Notifications = (gdkmonitor: Gdk.Monitor) => {
const notifd = Notifd.get_default(); const notifd = AstalNotifd.get_default();
const { TOP, RIGHT } = Astal.WindowAnchor; const { TOP, RIGHT } = Astal.WindowAnchor;
const [notifications, setNotifications] = createState(
new Array<AstalNotifd.Notification>(),
);
const notifiedHandler = notifd.connect("notified", (_, id, replaced) => {
const notification = notifd.get_notification(id);
if (replaced && notifications.get().some((n) => n.id === id)) {
setNotifications((ns) => ns.map((n) => (n.id === id ? notification : n)));
} else {
setNotifications((ns) => [notification, ...ns]);
}
});
const resolvedHandler = notifd.connect("resolved", (_, id) => {
setNotifications((ns) => ns.filter((n) => n.id !== id));
});
onCleanup(() => {
notifd.disconnect(notifiedHandler);
notifd.disconnect(resolvedHandler);
});
return ( return (
<window <window
$={(self) => onCleanup(() => self.destroy())}
name={WINDOW_NAME} name={WINDOW_NAME}
cssClasses={["notifications"]} cssClasses={["notifications"]}
gdkmonitor={gdkmonitor} gdkmonitor={gdkmonitor}
visible={notifications((ns) => ns.length > 0)}
anchor={TOP | RIGHT} anchor={TOP | RIGHT}
visible={bind(notifd, "notifications").as(
(notifications) => notifications.length > 0,
)}
> >
<box vertical={true} spacing={10}> <box orientation={Gtk.Orientation.VERTICAL}>
{bind(notifd, "notifications").as((notifications) => <For each={notifications}>{(n) => <Notification n={n} />}</For>
notifications.map((n) => <NotificationWidget n={n} />),
)}
</box> </box>
</window> </window>
); );

View File

@@ -1,79 +0,0 @@
import Notifd from "gi://AstalNotifd";
import { GLib } from "astal";
import { Gtk, Gdk } from "astal/gtk4";
type TimeoutManager = {
setupTimeout: () => void;
clearTimeout: () => void;
handleHover: () => void;
handleHoverLost: () => void;
cleanup: () => void;
};
export const createTimeoutManager = (
dismissCallback: () => void,
timeoutDelay: number,
): TimeoutManager => {
let isHovered = false;
let timeoutId: number | null = null;
const clearTimeout = () => {
if (timeoutId !== null) {
GLib.source_remove(timeoutId);
timeoutId = null;
}
};
const setupTimeout = () => {
clearTimeout();
if (!isHovered) {
timeoutId = GLib.timeout_add(GLib.PRIORITY_DEFAULT, timeoutDelay, () => {
clearTimeout();
dismissCallback();
return GLib.SOURCE_REMOVE;
});
}
};
return {
setupTimeout,
clearTimeout,
handleHover: () => {
isHovered = true;
clearTimeout();
},
handleHoverLost: () => {
isHovered = false;
setupTimeout();
},
cleanup: clearTimeout,
};
};
export const time = (time: number, format = "%H:%M") =>
GLib.DateTime.new_from_unix_local(time).format(format)!;
export const urgency = (notification: Notifd.Notification) => {
const { LOW, NORMAL, CRITICAL } = Notifd.Urgency;
switch (notification.urgency) {
case LOW:
return "low";
case CRITICAL:
return "critical";
case NORMAL:
default:
return "normal";
}
};
export const isIcon = (icon: string) => {
const display = Gdk.Display.get_default();
if (!display) return false;
const iconTheme = Gtk.IconTheme.get_for_display(display);
return iconTheme.has_icon(icon);
};
export const fileExists = (path: string) =>
GLib.file_test(path, GLib.FileTest.EXISTS);

View File

@@ -1,53 +1,112 @@
import { bind } from "astal"; import { Gdk, Gtk } from "ags/gtk4";
import { Gtk } from "astal/gtk4"; import Adw from "gi://Adw";
import Notifd from "gi://AstalNotifd"; import AstalNotifd from "gi://AstalNotifd";
import { urgency, createTimeoutManager } from "./notifd"; import GLib from "gi://GLib";
import Pango from "gi://Pango";
export const NotificationWidget = ({ n }: { n: Notifd.Notification }) => { const isIcon = (icon?: string | null) => {
const { START, CENTER } = Gtk.Align; const iconTheme = Gtk.IconTheme.get_for_display(Gdk.Display.get_default()!);
const actions = n.actions || []; return icon && iconTheme.has_icon(icon);
const TIMEOUT_DELAY = 3000; };
// Keep track of notification validity const fileExists = (path: string) => {
const timeoutManager = createTimeoutManager(() => n.dismiss(), TIMEOUT_DELAY); return GLib.file_test(path, GLib.FileTest.EXISTS);
};
const time = (time: number, format = "%H:%M") => {
return GLib.DateTime.new_from_unix_local(time).format(format)!;
};
const urgency = (n: AstalNotifd.Notification) => {
const { LOW, NORMAL, CRITICAL } = AstalNotifd.Urgency;
switch (n.urgency) {
case LOW:
return "low";
case CRITICAL:
return "critical";
case NORMAL:
default:
return "normal";
}
};
export const Notification = ({ n }: { n: AstalNotifd.Notification }) => {
return ( return (
<box <Adw.Clamp maximumSize={400}>
setup={(self) => { <box
// Set up timeout widthRequest={400}
timeoutManager.setupTimeout(); class={`notification ${urgency(n)}`}
orientation={Gtk.Orientation.VERTICAL}
self.connect("unrealize", () => { >
timeoutManager.cleanup(); <box class="header">
}); {(n.appIcon || isIcon(n.desktopEntry)) && (
}} <image
cssClasses={["notification", `${urgency(n)}`]} class="app-icon"
name={n.id.toString()} visible={Boolean(n.appIcon || n.desktopEntry)}
spacing={10} iconName={n.appIcon || n.desktopEntry}
> />
<box vertical cssClasses={["text"]} spacing={10}> )}
<label <label
cssClasses={["title"]} class="app-name"
label={bind(n, "summary")} halign={Gtk.Align.START}
halign={START} ellipsize={Pango.EllipsizeMode.END}
/> label={n.appName || "Unknown"}
{n.body && ( />
<label cssClasses={["body"]} label={bind(n, "body")} halign={START} /> <label
class="time"
hexpand
halign={Gtk.Align.END}
label={time(n.time)}
/>
<button onClicked={() => n.dismiss()}>
<image iconName="window-close-symbolic" />
</button>
</box>
<Gtk.Separator visible />
<box class="content">
{n.image && fileExists(n.image) && (
<image valign={Gtk.Align.START} class="image" file={n.image} />
)}
{n.image && isIcon(n.image) && (
<box valign={Gtk.Align.START} class="icon-image">
<image
iconName={n.image}
halign={Gtk.Align.CENTER}
valign={Gtk.Align.CENTER}
/>
</box>
)}
<box orientation={Gtk.Orientation.VERTICAL}>
<label
class="summary"
halign={Gtk.Align.START}
xalign={0}
label={n.summary}
ellipsize={Pango.EllipsizeMode.END}
/>
{n.body && (
<label
class="body"
wrap
useMarkup
halign={Gtk.Align.START}
xalign={0}
justify={Gtk.Justification.FILL}
label={n.body}
/>
)}
</box>
</box>
{n.actions.length > 0 && (
<box class="actions">
{n.actions.map(({ label, id }) => (
<button hexpand onClicked={() => n.invoke(id)}>
<label label={label} halign={Gtk.Align.CENTER} hexpand />
</button>
))}
</box>
)} )}
</box> </box>
{actions.length > 0 && ( </Adw.Clamp>
<box cssClasses={["actions"]}>
{actions.map(({ label, id }) => (
<button
hexpand
cssClasses={["action-button"]}
onClicked={() => n.invoke(id)}
>
<label label={label} halign={CENTER} hexpand />
</button>
))}
</box>
)}
</box>
); );
}; };