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
+2 -2
View File
@@ -47,7 +47,7 @@ Singleton {
Process {
id: tmuxCheckProcess
command: ["which", "tmux"]
command: ["sh", "-c", "command -v tmux"]
running: false
onExited: code => {
root.tmuxAvailable = (code === 0);
@@ -56,7 +56,7 @@ Singleton {
Process {
id: zellijCheckProcess
command: ["which", "zellij"]
command: ["sh", "-c", "command -v zellij"]
running: false
onExited: code => {
root.zellijAvailable = (code === 0);