dotfiles/homes/me/ags/config.js

25 lines
483 B
JavaScript
Raw Normal View History

2024-11-11 12:29:10 +10:00
import { applauncher } from "./applauncher.js"
2024-11-11 12:08:20 +10:00
const date = Variable('', {
poll: [1000, 'date'],
})
2024-11-11 12:08:20 +10:00
const Bar = (monitor = 0) => Widget.Window({
monitor,
name: 'bar${monitor}',
anchor: ['top', 'left', 'right'],
child: Widget.Label({ label: date.bind() }),
})
App.config({
2024-11-11 12:08:20 +10:00
style: "./style.css",
// icons: "./assets",
windows: [
2025-02-11 18:17:17 +10:00
//Bar(),
2024-11-11 12:29:10 +10:00
applauncher,
2024-11-11 12:08:20 +10:00
]
// gtkTheme: "Adwaita-dark",
// cursorTheme: "Qogir",
// iconTheme: "MoreWaita",[]
})