#!/bin/bash -f ###################################################################### # Artemis Nebula X11 script, (C) 2015-2024 Nosey Nick Waterman, # https://noseynick.org/artemis/nebula/ # All wrong righted, all rights reserved. Licensed under thev GNU # Affero General Public License v3.0 https://www.gnu.org/licenses/agpl.txt # with Commons Clause https://commonsclause.com/ v1.0 ###################################################################### banner X11 server startup # shellcheck disable=SC1090 # no need to parse this file when shellchecking: . ~/bin/conf.sh [[ "$DISPLAY" ]] || export DISPLAY=:20 sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x768x24 -nolisten tcp & # prev: sudo Xorg $DISPLAY -nolisten tcp & # ++++++++++ Why root?