Ajout d'un echo quand le serveur se lance

This commit is contained in:
Hippolyte Chauvin 2023-05-07 21:59:23 +02:00
parent 3273d9ba22
commit 812b4409b4

View file

@ -33,7 +33,9 @@ is_running() {
start() {
if ! is_running; then
vncserver
set -e
vncserver > /dev/null
echo 'export DISPLAY=:1;'
else
error "The VNC server is already running!" 4
fi