Fix audio in/output, add app pinning to applauncher

This commit is contained in:
ly-sec 2025-07-22 13:51:02 +02:00
parent 57bd28e326
commit 7d568694bd
3 changed files with 94 additions and 10 deletions

View file

@ -7,7 +7,7 @@ import qs.Services
Singleton {
property string shellName: "Noctalia"
property string settingsDir: Quickshell.env("HOME") + "/.config/" + shellName + "/"
property string settingsDir: (Quickshell.env("XDG_CONFIG_HOME") || Quickshell.env("HOME") + "/.config") + "/" + shellName + "/"
property string settingsFile: settingsDir + "Settings.json"
property var settings: settingAdapter
@ -57,6 +57,7 @@ Singleton {
property bool reverseDayMonth: false
property bool use12HourClock: false
property bool dimPanels: true
property var pinnedExecs: [] // Added for AppLauncher pinned apps
}
}