diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-21 14:34:21 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-03-16 09:37:49 -0400 |
| commit | 17bdfd901fce9405907afd9e79b1ce66aac2f26e (patch) | |
| tree | 89dbcfc0e92ee20cea21918f4c04495802a90a61 /config | |
| parent | remove config saving, make background scale properly, and add quickshell desk... (diff) | |
| download | caelestia-shell-17bdfd901fce9405907afd9e79b1ce66aac2f26e.tar.gz caelestia-shell-17bdfd901fce9405907afd9e79b1ce66aac2f26e.tar.bz2 caelestia-shell-17bdfd901fce9405907afd9e79b1ce66aac2f26e.zip | |
remove lockscreen
Diffstat (limited to 'config')
| -rw-r--r-- | config/Config.qml | 17 | ||||
| -rw-r--r-- | config/GeneralConfig.qml | 21 | ||||
| -rw-r--r-- | config/LockConfig.qml | 15 |
3 files changed, 0 insertions, 53 deletions
diff --git a/config/Config.qml b/config/Config.qml index 8ea5e79..3365990 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -21,7 +21,6 @@ Singleton { property alias osd: adapter.osd property alias session: adapter.session property alias winfo: adapter.winfo - property alias lock: adapter.lock property alias utilities: adapter.utilities property alias sidebar: adapter.sidebar property alias services: adapter.services @@ -42,7 +41,6 @@ Singleton { osd: serializeOsd(), session: serializeSession(), winfo: serializeWinfo(), - lock: serializeLock(), utilities: serializeUtilities(), sidebar: serializeSidebar(), services: serializeServices(), @@ -97,11 +95,6 @@ Singleton { playback: general.apps.playback, explorer: general.apps.explorer }, - idle: { - lockBeforeSleep: general.idle.lockBeforeSleep, - inhibitWhenAudio: general.idle.inhibitWhenAudio, - timeouts: general.idle.timeouts - }, battery: { warnLevels: general.battery.warnLevels, criticalLevel: general.battery.criticalLevel @@ -274,15 +267,6 @@ Singleton { return {}; } - function serializeLock(): var { - return { - recolourLogo: lock.recolourLogo, - enableFprint: lock.enableFprint, - maxFprintTries: lock.maxFprintTries, - hideNotifs: lock.hideNotifs - }; - } - function serializeUtilities(): var { return { enabled: utilities.enabled, @@ -375,7 +359,6 @@ Singleton { property OsdConfig osd: OsdConfig {} property SessionConfig session: SessionConfig {} property WInfoConfig winfo: WInfoConfig {} - property LockConfig lock: LockConfig {} property UtilitiesConfig utilities: UtilitiesConfig {} property SidebarConfig sidebar: SidebarConfig {} property ServiceConfig services: ServiceConfig {} diff --git a/config/GeneralConfig.qml b/config/GeneralConfig.qml index 0d1d1e1..37df57a 100644 --- a/config/GeneralConfig.qml +++ b/config/GeneralConfig.qml @@ -4,7 +4,6 @@ JsonObject { property string logo: "" property list<string> excludedScreens: [] property Apps apps: Apps {} - property Idle idle: Idle {} property Battery battery: Battery {} component Apps: JsonObject { @@ -14,26 +13,6 @@ JsonObject { property list<string> explorer: ["thunar"] } - component Idle: JsonObject { - property bool lockBeforeSleep: true - property bool inhibitWhenAudio: true - property list<var> timeouts: [ - { - timeout: 180, - idleAction: "lock" - }, - { - timeout: 300, - idleAction: "dpms off", - returnAction: "dpms on" - }, - { - timeout: 600, - idleAction: ["systemctl", "suspend-then-hibernate"] - } - ] - } - component Battery: JsonObject { property list<var> warnLevels: [ { diff --git a/config/LockConfig.qml b/config/LockConfig.qml deleted file mode 100644 index d0a9fb3..0000000 --- a/config/LockConfig.qml +++ /dev/null @@ -1,15 +0,0 @@ -import Quickshell.Io - -JsonObject { - property bool recolourLogo: false - property bool enableFprint: true - property int maxFprintTries: 3 - property bool hideNotifs: false - property Sizes sizes: Sizes {} - - component Sizes: JsonObject { - property real heightMult: 0.7 - property real ratio: 16 / 9 - property int centerWidth: 600 - } -} |