Move shell scripts into plugin directories

This commit is contained in:
David Heinemeier Hansson
2026-05-25 14:53:21 +02:00
parent 10898aea16
commit 37e4da524b
8 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -143,7 +143,7 @@ Item {
function hiddenEntryScanCommand() {
var desktop = [Quickshell.env("XDG_CURRENT_DESKTOP"), Quickshell.env("XDG_SESSION_DESKTOP"), Quickshell.env("DESKTOP_SESSION")].filter(function(v) { return String(v || "").length > 0 }).join(":")
var script = root.omarchyPath + "/shell/scripts/launcher-hidden-entries.sh"
var script = root.omarchyPath + "/shell/plugins/launcher/hidden-entries.sh"
return Util.shellQuote(script) + " " + Util.shellQuote(desktop)
}