summaryrefslogtreecommitdiff
path: root/modules/launcher/services/Apps.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-19 16:59:32 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-19 16:59:32 +1000
commit58826b7deb07f187d2c2c8cac3bf651a008b4646 (patch)
tree2df9f0fa10739beb363ac1da518bb467e996c32a /modules/launcher/services/Apps.qml
parentlauncher: better scheme search (diff)
downloadcaelestia-shell-58826b7deb07f187d2c2c8cac3bf651a008b4646.tar.gz
caelestia-shell-58826b7deb07f187d2c2c8cac3bf651a008b4646.tar.bz2
caelestia-shell-58826b7deb07f187d2c2c8cac3bf651a008b4646.zip
internal: move launcher stuff into subfolders
Diffstat (limited to 'modules/launcher/services/Apps.qml')
-rw-r--r--modules/launcher/services/Apps.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/launcher/services/Apps.qml b/modules/launcher/services/Apps.qml
new file mode 100644
index 0000000..d561d15
--- /dev/null
+++ b/modules/launcher/services/Apps.qml
@@ -0,0 +1,25 @@
+pragma Singleton
+
+import qs.config
+import qs.utils
+import Quickshell
+
+Searcher {
+ id: root
+
+ list: DesktopEntries.applications.values.filter(a => !a.noDisplay).sort((a, b) => a.name.localeCompare(b.name))
+ useFuzzy: Config.launcher.useFuzzy.apps
+
+ function launch(entry: DesktopEntry): void {
+ if (entry.runInTerminal)
+ Quickshell.execDetached({
+ command: ["app2unit", "--", "foot", `${Quickshell.configDir}/assets/wrap_term_launch.sh`, ...entry.command],
+ workingDirectory: entry.workingDirectory
+ });
+ else
+ Quickshell.execDetached({
+ command: ["app2unit", "--", ...entry.command],
+ workingDirectory: entry.workingDirectory
+ });
+ }
+}