ags,hypr: initial code!

This commit is contained in:
retrozinndev
2025-01-22 13:45:59 -03:00
parent 5defceb05e
commit 37687b3e62
84 changed files with 368 additions and 2621 deletions
+11
View File
@@ -0,0 +1,11 @@
import { GLib } from "astal";
export function getUserDirs() {
return {
home: GLib.getenv("HOME"),
state: GLib.getenv("XDG_STATE_HOME"),
cache: GLib.getenv("XDG_CACHE_HOME"),
config: GLib.getenv("XDG_CONFIG_HOME"),
data: GLib.getenv("XDG_DATA_HOME")
} as const;
}