10 lines
151 B
Text
10 lines
151 B
Text
|
#!/usr/bin/env zsh
|
||
|
|
||
|
if which xorg 1>/dev/null 2>&1; then
|
||
|
xorg_exists="true"
|
||
|
else
|
||
|
xorg_exists="false"
|
||
|
fi
|
||
|
|
||
|
echo "{ \"exists\": ${xorg_exists} }"
|