Fix Xorg detection condition.

master
Icedream 2018-02-17 20:18:10 +01:00
parent 4f137bd19a
commit 51ab3ff3fa
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 2 additions and 1 deletions

View File

@ -87,6 +87,7 @@ done
# graphics UI detection # graphics UI detection
# basically just checks if an X server is running on the machine and if yes, we just assume it's a desktop, not a server # basically just checks if an X server is running on the machine and if yes, we just assume it's a desktop, not a server
if ps aux | grep Xorg >/dev/null 2>&1; then # grep will be always returned as a process with Xorg in the command line, so assume there must be a second process for this to succeed
if [ $(ps aux | grep Xorg | wc -l) -gt 1 ]; then
add_tag "xorg_running" "desktop" add_tag "xorg_running" "desktop"
fi fi