190 lines
5.3 KiB
TypeScript
190 lines
5.3 KiB
TypeScript
import { App } from "astal/gtk3"
|
|
import { Variable, GLib, bind } from "astal"
|
|
import { Astal, Gtk, Gdk } from "astal/gtk3"
|
|
import Hyprland from "gi://AstalHyprland"
|
|
import Mpris from "gi://AstalMpris"
|
|
import Battery from "gi://AstalBattery"
|
|
import Wp from "gi://AstalWp"
|
|
import Network from "gi://AstalNetwork"
|
|
import Tray from "gi://AstalTray"
|
|
|
|
function SysTray() {
|
|
const tray = Tray.get_default()
|
|
|
|
return <box className="SysTray">
|
|
{bind(tray, "items").as(items => items.map(item => (
|
|
<menubutton
|
|
tooltipMarkup={bind(item, "tooltipMarkup")}
|
|
usePopover={false}
|
|
actionGroup={bind(item, "actionGroup").as(ag => ["dbusmenu", ag])}
|
|
menuModel={bind(item, "menuModel")}>
|
|
<icon gicon={bind(item, "gicon")} />
|
|
</menubutton>
|
|
)))}
|
|
</box>
|
|
}
|
|
|
|
function Wifi() {
|
|
const network = Network.get_default()
|
|
const wifi = bind(network, "wifi")
|
|
|
|
return <box visible={wifi.as(Boolean)}>
|
|
{wifi.as(wifi => wifi && (
|
|
<icon
|
|
tooltipText={bind(wifi, "ssid").as(String)}
|
|
className="Wifi"
|
|
icon={bind(wifi, "iconName")}
|
|
/>
|
|
))}
|
|
</box>
|
|
|
|
}
|
|
|
|
function AudioSlider() {
|
|
const speaker = Wp.get_default()?.audio.defaultSpeaker!
|
|
|
|
return <box className="AudioSlider" css="min-width: 140px">
|
|
<icon icon={bind(speaker, "volumeIcon")} />
|
|
<slider
|
|
hexpand
|
|
onDragged={({ value }) => speaker.volume = value}
|
|
value={bind(speaker, "volume")}
|
|
/>
|
|
</box>
|
|
}
|
|
|
|
function BatteryLevel() {
|
|
const bat = Battery.get_default()
|
|
|
|
return <box className="Battery"
|
|
visible={bind(bat, "isPresent")}>
|
|
<icon icon={bind(bat, "batteryIconName")} />
|
|
<label label={bind(bat, "percentage").as(p =>
|
|
`${Math.floor(p * 100)} %`
|
|
)} />
|
|
</box>
|
|
}
|
|
|
|
function Media() {
|
|
const mpris = Mpris.get_default()
|
|
|
|
return <box className="Media">
|
|
{bind(mpris, "players").as(ps => ps[0] ? (
|
|
<box>
|
|
<box
|
|
className="Cover"
|
|
valign={Gtk.Align.CENTER}
|
|
css={bind(ps[0], "coverArt").as(cover =>
|
|
`background-image: url('${cover}');`
|
|
)}
|
|
/>
|
|
<label
|
|
label={bind(ps[0], "metadata").as(() =>
|
|
`${ps[0].title} - ${ps[0].artist}`
|
|
)}
|
|
/>
|
|
</box>
|
|
) : (
|
|
<label label="Biscuit" />
|
|
))}
|
|
</box>
|
|
}
|
|
|
|
|
|
function Workspaces() {
|
|
const hypr = Hyprland.get_default();
|
|
|
|
return (
|
|
<box className="Workspaces">
|
|
{bind(hypr, "focusedWorkspace").as((fw) => {
|
|
if (!fw) return null;
|
|
|
|
// Determine the current chunk of 5 visible workspace buttons
|
|
const currentChunkStart = Math.floor((fw.id - 1) / 5) * 5 + 1;
|
|
const visibleIds = Array.from({ length: 5 }, (_, i) => currentChunkStart + i);
|
|
|
|
return visibleIds.map((id) => {
|
|
// Try to get the real workspace, fall back to a dummy one if it doesn't exist
|
|
const ws =
|
|
hypr.workspaces.find((w) => w.id === id) ??
|
|
Hyprland.Workspace.dummy(id, null);
|
|
|
|
return (
|
|
<button
|
|
className={fw.id === id ? "focused" : ""}
|
|
onClick={() => ws.focus()}
|
|
>
|
|
{id}
|
|
</button>
|
|
);
|
|
});
|
|
})}
|
|
</box>
|
|
);
|
|
}
|
|
|
|
function FocusedClient() {
|
|
const hypr = Hyprland.get_default();
|
|
const focused = bind(hypr, "focusedClient");
|
|
|
|
return (
|
|
<box className="FocusedClient" visible={focused.as(Boolean)}>
|
|
{focused.as(client => {
|
|
if (!client) return null;
|
|
|
|
return (
|
|
<label
|
|
label={bind(client, "title").as(title => {
|
|
return title.length > 40
|
|
? title.slice(0, 37) + "..."
|
|
: title;
|
|
})}
|
|
/>
|
|
);
|
|
})}
|
|
</box>
|
|
);
|
|
}
|
|
function Time({ format = "%H:%M|%a %b %d" }) {
|
|
const time = Variable<string>("").poll(1000, () =>
|
|
GLib.DateTime.new_now_local().format(format)!
|
|
);
|
|
|
|
return bind(time).as(str => {
|
|
const [hm, date] = str.split("|");
|
|
|
|
return (
|
|
<box className="Time">
|
|
<label className="TimeHM" label={hm} />
|
|
<label className="TimeDate" label={date} />
|
|
</box>
|
|
);
|
|
});
|
|
}
|
|
|
|
export default function Bar(monitor: Gdk.Monitor) {
|
|
const { TOP, LEFT, RIGHT } = Astal.WindowAnchor
|
|
|
|
return <window
|
|
className="Bar"
|
|
gdkmonitor={monitor}
|
|
exclusivity={Astal.Exclusivity.EXCLUSIVE}
|
|
anchor={TOP | LEFT | RIGHT}>
|
|
<centerbox>
|
|
<box hexpand halign={Gtk.Align.START}>
|
|
<Workspaces />
|
|
<FocusedClient />
|
|
</box>
|
|
<box>
|
|
<Time />
|
|
</box>
|
|
<box hexpand halign={Gtk.Align.END} >
|
|
<SysTray />
|
|
<Wifi />
|
|
<AudioSlider />
|
|
<BatteryLevel />
|
|
</box>
|
|
</centerbox>
|
|
</window>
|
|
}
|