Compare commits

..

No commits in common. "aa0190c6f84c6819e4b95de1d0dfd58aaffd5ddf" and "4f137bd19a682833bb1a6903c0ae87ba1e8aaf02" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View File

@ -87,7 +87,6 @@ done
# 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
# 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
if ps aux | grep Xorg >/dev/null 2>&1; then
add_tag "xorg_running" "desktop"
fi

View File

@ -34,7 +34,6 @@ pip3_install() {
if has_tags pm:pacman; then
# libarchive for bsdtar
sudo pacman -Sy
pacman_install \
makepkg \
base-devel \