mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
12 lines
368 B
JavaScript
12 lines
368 B
JavaScript
import App from "resource:///com/github/Aylur/ags/app.js";
|
|
import Clock from "../../misc/Clock.js";
|
|
import PanelButton from "../PanelButton.js";
|
|
|
|
export default ({ format = "%R - %x" } = {}) =>
|
|
PanelButton({
|
|
class_name: "dashboard panel-button",
|
|
on_clicked: () => App.toggleWindow("dashboard"),
|
|
window: "dashboard",
|
|
content: Clock({ format }),
|
|
});
|