Initial commit

This commit is contained in:
Patrick Alvin Alcala 2025-06-26 16:53:43 +08:00
commit 209ba130c0
4852 changed files with 1517959 additions and 0 deletions

11
.config/ags/app.ts Normal file
View file

@ -0,0 +1,11 @@
import { App, Widget } from "astal/gtk3"
import Calendar from "./widget/Calendar"
import Sidebar from "./widget/Sidebar"
App.start({
css: "./style.css",
main() {
Sidebar();
Calendar();
}
})