💥 fix: config being declared after its usage

`generalConfig` and `userData` are now stored under src/config.ts
This commit is contained in:
retrozinndev
2025-09-26 14:12:29 -03:00
parent c8364c99f2
commit 30e0f24a86
10 changed files with 85 additions and 79 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
import { createRoot, getScope, Scope } from "ags";
import GObject, { getter, gtype, property, register, setter } from "ags/gobject";
import { execAsync } from "ags/process";
import { userData } from "../config";
import GObject, { getter, gtype, property, register, setter } from "ags/gobject";
import AstalBluetooth from "gi://AstalBluetooth";
import { userData } from "../app";
/** AstalBluetooth helper (implements the default adapter feature) */