2024-08-21 21:30:11 +02:00
|
|
|
const hyprland = await Service.import("hyprland")
|
|
|
|
const mpris = await Service.import("mpris")
|
|
|
|
const audio = await Service.import("audio")
|
|
|
|
const battery = await Service.import("battery")
|
|
|
|
const systemtray = await Service.import("systemtray")
|
|
|
|
|
|
|
|
const date = Variable("", {
|
2024-08-21 22:22:02 +02:00
|
|
|
poll: [1000, 'date "+%H:%M:%S %b %e."'],
|
2024-08-21 21:30:11 +02:00
|
|
|
})
|
2024-08-21 22:22:02 +02:00
|
|
|
|
2024-08-21 21:30:11 +02:00
|
|
|
function Workspaces() {
|
2024-08-22 18:42:32 +02:00
|
|
|
const activeId = hyprland.active.workspace.bind("id");
|
|
|
|
const workspaces = hyprland.bind("workspaces").as((ws) =>
|
|
|
|
ws
|
|
|
|
.filter(({ id }) => id > 0)
|
|
|
|
.sort((a, b) => a.id - b.id)
|
|
|
|
.map(({ id }) =>
|
|
|
|
Widget.Button({
|
|
|
|
on_clicked: () => hyprland.messageAsync(`dispatch workspace ${id}`),
|
|
|
|
child: Widget.Label(`${id}`),
|
|
|
|
class_name: activeId.as(i => `${i === id ? "focused" : ""}`),
|
2024-08-21 22:22:02 +02:00
|
|
|
})))
|
2024-08-21 21:30:11 +02:00
|
|
|
|
|
|
|
return Widget.Box({
|
|
|
|
class_name: "workspaces",
|
|
|
|
children: workspaces,
|
2024-08-21 22:22:02 +02:00
|
|
|
})
|
2024-08-21 21:30:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function ClientTitle() {
|
|
|
|
return Widget.Label({
|
|
|
|
class_name: "client-title",
|
|
|
|
label: hyprland.active.client.bind("title"),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function Clock() {
|
|
|
|
return Widget.Label({
|
2024-08-21 22:22:02 +02:00
|
|
|
class_name: "clock",
|
2024-08-21 21:30:11 +02:00
|
|
|
label: date.bind(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function Media() {
|
|
|
|
const label = Utils.watch("", mpris, "player-changed", () => {
|
|
|
|
if (mpris.players[0]) {
|
|
|
|
const { track_artists, track_title } = mpris.players[0]
|
|
|
|
return `${track_artists.join(", ")} - ${track_title}`
|
|
|
|
} else {
|
|
|
|
return "Nothing is playing"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return Widget.Button({
|
|
|
|
class_name: "media",
|
|
|
|
on_primary_click: () => mpris.getPlayer("")?.playPause(),
|
|
|
|
on_scroll_up: () => mpris.getPlayer("")?.next(),
|
|
|
|
on_scroll_down: () => mpris.getPlayer("")?.previous(),
|
|
|
|
child: Widget.Label({ label }),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function Volume() {
|
|
|
|
const icons = {
|
|
|
|
101: "overamplified",
|
|
|
|
67: "high",
|
|
|
|
34: "medium",
|
|
|
|
1: "low",
|
|
|
|
0: "muted",
|
|
|
|
}
|
|
|
|
|
|
|
|
function getIcon() {
|
|
|
|
const icon = audio.speaker.is_muted ? 0 : [101, 67, 34, 1, 0].find(
|
|
|
|
threshold => threshold <= audio.speaker.volume * 100)
|
|
|
|
|
2024-08-21 22:22:02 +02:00
|
|
|
return `audio-volume-${icons[icon]}-symbolic`
|
2024-08-21 21:30:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const icon = Widget.Icon({
|
|
|
|
icon: Utils.watch(getIcon(), audio.speaker, getIcon),
|
|
|
|
})
|
|
|
|
|
|
|
|
const slider = Widget.Slider({
|
|
|
|
hexpand: true,
|
|
|
|
draw_value: false,
|
|
|
|
on_change: ({ value }) => audio.speaker.volume = value,
|
|
|
|
setup: self => self.hook(audio.speaker, () => {
|
|
|
|
self.value = audio.speaker.volume || 0
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
|
|
|
|
return Widget.Box({
|
2024-08-21 22:22:02 +02:00
|
|
|
class_name: "volume",
|
|
|
|
css: "min-width: 180px",
|
2024-08-21 21:30:11 +02:00
|
|
|
children: [icon, slider],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-08-21 22:22:02 +02:00
|
|
|
function BatteryLabel() {
|
2024-08-21 21:30:11 +02:00
|
|
|
const value = battery.bind("percent").as(p => p > 0 ? p / 100 : 0)
|
|
|
|
const icon = battery.bind("percent").as(p =>
|
2024-08-21 22:22:02 +02:00
|
|
|
`battery-level-${Math.floor(p / 10) * 10}-symbolic`)
|
2024-08-21 21:30:11 +02:00
|
|
|
|
|
|
|
return Widget.Box({
|
2024-08-21 22:22:02 +02:00
|
|
|
class_name: "battery",
|
2024-08-21 21:30:11 +02:00
|
|
|
visible: battery.bind("available"),
|
|
|
|
children: [
|
2024-08-21 22:22:02 +02:00
|
|
|
Widget.Icon({ icon }),
|
2024-08-21 21:30:11 +02:00
|
|
|
Widget.LevelBar({
|
|
|
|
widthRequest: 140,
|
|
|
|
vpack: "center",
|
|
|
|
value,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function SysTray() {
|
|
|
|
const items = systemtray.bind("items")
|
|
|
|
.as(items => items.map(item => Widget.Button({
|
2024-08-21 22:22:02 +02:00
|
|
|
child: Widget.Icon({ icon: item.bind("icon") }),
|
2024-08-21 21:30:11 +02:00
|
|
|
on_primary_click: (_, event) => item.activate(event),
|
|
|
|
on_secondary_click: (_, event) => item.openMenu(event),
|
|
|
|
tooltip_markup: item.bind("tooltip_markup"),
|
|
|
|
})))
|
|
|
|
|
|
|
|
return Widget.Box({
|
|
|
|
children: items,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// layout of the bar
|
|
|
|
function Left() {
|
|
|
|
return Widget.Box({
|
|
|
|
spacing: 8,
|
|
|
|
children: [
|
|
|
|
Workspaces(),
|
2024-08-21 22:22:02 +02:00
|
|
|
ClientTitle(),
|
2024-08-21 21:30:11 +02:00
|
|
|
],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function Center() {
|
|
|
|
return Widget.Box({
|
|
|
|
spacing: 8,
|
|
|
|
children: [
|
|
|
|
Media(),
|
|
|
|
],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function Right() {
|
|
|
|
return Widget.Box({
|
|
|
|
hpack: "end",
|
|
|
|
spacing: 8,
|
|
|
|
children: [
|
|
|
|
Volume(),
|
2024-08-21 22:22:02 +02:00
|
|
|
BatteryLabel(),
|
2024-08-21 21:30:11 +02:00
|
|
|
Clock(),
|
|
|
|
SysTray(),
|
|
|
|
],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function Bar(monitor = 0) {
|
|
|
|
return Widget.Window({
|
|
|
|
name: `bar-${monitor}`, // name has to be unique
|
2024-08-21 22:22:02 +02:00
|
|
|
class_name: "bar",
|
2024-08-21 21:30:11 +02:00
|
|
|
monitor,
|
|
|
|
anchor: ["top", "left", "right"],
|
|
|
|
exclusivity: "exclusive",
|
|
|
|
child: Widget.CenterBox({
|
|
|
|
start_widget: Left(),
|
|
|
|
center_widget: Center(),
|
|
|
|
end_widget: Right(),
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
App.config({
|
2024-08-21 22:22:02 +02:00
|
|
|
style: "./style.css",
|
2024-08-21 21:30:11 +02:00
|
|
|
windows: [
|
2024-08-21 22:22:02 +02:00
|
|
|
Bar(),
|
|
|
|
|
|
|
|
// you can call it, for each monitor
|
|
|
|
// Bar(0),
|
|
|
|
// Bar(1)
|
2024-08-21 21:30:11 +02:00
|
|
|
],
|
|
|
|
})
|
|
|
|
|
|
|
|
export { }
|
2024-08-21 22:22:02 +02:00
|
|
|
|