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

qs: replace all which commands with command -v

This commit is contained in:
bbedward
2026-06-23 22:49:34 -04:00
parent 21ddc3cc3f
commit 14f21b6c6d
6 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ Singleton {
Process {
id: cavaCheck
command: ["which", "cava"]
command: ["sh", "-c", "command -v cava"]
running: false
onExited: exitCode => {
root.cavaAvailable = exitCode === 0 && Quickshell.env("DMS_DISABLE_CAVA") !== "1";