Upload to github

This commit is contained in:
2025-01-30 20:17:55 -08:00
parent 1d7506607d
commit b7084befad
32 changed files with 2402 additions and 0 deletions

14
app.ts Normal file
View File

@@ -0,0 +1,14 @@
import { App } from "astal/gtk3"
import style from "./style.scss"
import Bar from "./widget/Bar"
import Hyprland from "gi://AstalHyprland"
const hyprland = Hyprland.get_default()
App.start({
css: style,
icons: "/home/protoshark/.config/astal/assets/",
main() {
hyprland.monitors.map((monitor) => Bar(monitor))
},
})