* Implement matugen - WIP * Added matugen * Add types and cleanup code * Matugen implementation updates and added more options such as scheme and contrast. * Code cleanup and matugen settings renamed for clarity. * Makon maroon a primary matugen color. * Updates to handle variations of matugen colors * Finalizing matugen and wrapping up variations. * Minor styling updates of the settings dialog. * Do a swww dependency check. * Dependency logic update * Switch shouldn't double trigger notifications now when checking dependency. * Logic was inverted * Add matugen to dependency checker. * Fixed dependency checking conditional * Update dependency list in readme and check for matugen before doing matugen operations * Styling fixes * OSD Fix * Remove unused code from wallpaper service. * Color fixes for matugen. * Nix updates for new dependencies * Change default wallpaper to empty. * Added custom notification service for startup, cleaned up code and updated readme.
68 lines
3.2 KiB
TypeScript
68 lines
3.2 KiB
TypeScript
const network = await Service.import("network");
|
|
|
|
const Ethernet = () => {
|
|
return Widget.Box({
|
|
class_name: "menu-section-container ethernet",
|
|
vertical: true,
|
|
children: [
|
|
Widget.Box({
|
|
class_name: "menu-label-container",
|
|
hpack: "fill",
|
|
child: Widget.Label({
|
|
class_name: "menu-label",
|
|
hexpand: true,
|
|
hpack: "start",
|
|
label: "Ethernet",
|
|
}),
|
|
}),
|
|
Widget.Box({
|
|
class_name: "menu-items-section",
|
|
vertical: true,
|
|
child: Widget.Box({
|
|
class_name: "menu-content",
|
|
vertical: true,
|
|
setup: (self) => {
|
|
self.hook(network, () => {
|
|
return (self.child = Widget.Box({
|
|
class_name: "network-element-item",
|
|
child: Widget.Box({
|
|
hpack: "start",
|
|
children: [
|
|
Widget.Icon({
|
|
class_name: `network-icon ethernet ${network.wired.state === "activated" ? "active" : ""}`,
|
|
tooltip_text: network.wired.internet,
|
|
icon: `${network.wired["icon_name"]}`,
|
|
}),
|
|
Widget.Box({
|
|
class_name: "connection-container",
|
|
vertical: true,
|
|
children: [
|
|
Widget.Label({
|
|
class_name: "active-connection",
|
|
hpack: "start",
|
|
truncate: "end",
|
|
wrap: true,
|
|
label: `Ethernet Connection ${network.wired.state !== "unknown" && typeof network.wired?.speed === "number" ? `(${network.wired?.speed / 1000} Gbps)` : ""}`,
|
|
}),
|
|
Widget.Label({
|
|
hpack: "start",
|
|
class_name: "connection-status dim",
|
|
label:
|
|
network.wired.internet.charAt(0).toUpperCase() +
|
|
network.wired.internet.slice(1),
|
|
}),
|
|
],
|
|
}),
|
|
],
|
|
}),
|
|
}));
|
|
});
|
|
},
|
|
}),
|
|
}),
|
|
],
|
|
});
|
|
};
|
|
|
|
export { Ethernet };
|