mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
Settings: v41, telemetry off by default (Opt-in), no longer sending font names
This commit is contained in:
@@ -83,7 +83,7 @@
|
||||
"language": "",
|
||||
"allowPanelsOnScreenWithoutBar": true,
|
||||
"showChangelogOnStartup": true,
|
||||
"telemetryEnabled": true
|
||||
"telemetryEnabled": false
|
||||
},
|
||||
"ui": {
|
||||
"fontDefault": "",
|
||||
@@ -332,7 +332,6 @@
|
||||
"normalUrgencyDuration": 8,
|
||||
"criticalUrgencyDuration": 15,
|
||||
"enableKeyboardLayoutToast": true,
|
||||
"enableMediaToast": false,
|
||||
"saveToHistory": {
|
||||
"low": true,
|
||||
"normal": true,
|
||||
@@ -346,7 +345,8 @@
|
||||
"normalSoundFile": "",
|
||||
"lowSoundFile": "",
|
||||
"excludedApps": "discord,firefox,chrome,chromium,edge"
|
||||
}
|
||||
},
|
||||
"enableMediaToast": false
|
||||
},
|
||||
"osd": {
|
||||
"enabled": true,
|
||||
@@ -357,8 +357,7 @@
|
||||
"enabledTypes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
4
|
||||
2
|
||||
],
|
||||
"monitors": []
|
||||
},
|
||||
|
||||
@@ -25,7 +25,7 @@ Singleton {
|
||||
- Default cache directory: ~/.cache/noctalia
|
||||
*/
|
||||
readonly property alias data: adapter // Used to access via Settings.data.xxx.yyy
|
||||
readonly property int settingsVersion: 40
|
||||
readonly property int settingsVersion: 41
|
||||
readonly property bool isDebug: Quickshell.env("NOCTALIA_DEBUG") === "1"
|
||||
readonly property string shellName: "noctalia"
|
||||
readonly property string configDir: Quickshell.env("NOCTALIA_CONFIG_DIR") || (Quickshell.env("XDG_CONFIG_HOME") || Quickshell.env("HOME") + "/.config") + "/" + shellName + "/"
|
||||
@@ -270,7 +270,7 @@ Singleton {
|
||||
property string language: ""
|
||||
property bool allowPanelsOnScreenWithoutBar: true
|
||||
property bool showChangelogOnStartup: true
|
||||
property bool telemetryEnabled: true
|
||||
property bool telemetryEnabled: false
|
||||
}
|
||||
|
||||
// ui
|
||||
|
||||
@@ -126,9 +126,7 @@ Singleton {
|
||||
monitors: getMonitorInfo(),
|
||||
ui: {
|
||||
scaleRatio: Settings.data.general.scaleRatio,
|
||||
fontDefault: Settings.data.ui.fontDefault || "default",
|
||||
fontDefaultScale: Settings.data.ui.fontDefaultScale,
|
||||
fontFixed: Settings.data.ui.fontFixed || "default",
|
||||
fontFixedScale: Settings.data.ui.fontFixedScale
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user