Fix bug in checkForGraph...()

This commit is contained in:
Santiago Lo Coco 2022-01-04 12:39:57 -03:00
parent 86f704a633
commit 2913c24307
1 changed files with 3 additions and 3 deletions

View File

@ -448,11 +448,11 @@ getDotfiles() {
checkForGraphicalInterface() {
journalctl --sync
result=$(journalctl -b -r -g "Graphical" | wc -l)
result=$(journalctl -b -q -r -g "Graphical" | wc -l)
while [ $result -lt 2 ]; do
journalctl --sync
result=$(journalctl -b -r -g "Graphical" | wc -l)
sleep 1
journalctl --sync
result=$(journalctl -b -q -r -g "Graphical" | wc -l)
done
}