1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-08 04:09:15 -04:00

launcher: add /d /f file search prefixes. Fix prefix not always

triggering
This commit is contained in:
bbedward
2026-05-21 21:10:30 -04:00
parent 7ddd0ca90d
commit f0c31bd7b3
8 changed files with 49 additions and 20 deletions
+6
View File
@@ -187,6 +187,7 @@ Singleton {
property string timeLocale: ""
property string launcherLastMode: "all"
property string launcherLastFileSearchType: "all"
property string launcherLastQuery: ""
property var launcherQueryHistory: []
property string appDrawerLastMode: "apps"
@@ -1178,6 +1179,11 @@ Singleton {
saveSettings();
}
function setLauncherLastFileSearchType(type) {
launcherLastFileSearchType = type;
saveSettings();
}
function setLauncherLastQuery(query) {
launcherLastQuery = query;
saveSettings();
@@ -87,6 +87,7 @@ var SPEC = {
timeLocale: { def: "" },
launcherLastMode: { def: "all" },
launcherLastFileSearchType: { def: "all" },
launcherLastQuery: { def: "" },
launcherQueryHistory: { def: [] },
appDrawerLastMode: { def: "apps" },