mirror of https://github.com/ThunixdotNet/-vnc.git
20 lines
325 B
Plaintext
20 lines
325 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
USER=$(whoami)
|
||
|
|
||
|
# get new display
|
||
|
DISPLAY=0
|
||
|
for file in /var/lib/vnc/* ; do
|
||
|
if [ $(cat $file) -gt $DISPLAY ] ; then
|
||
|
DISPLAY=$(cat $file)
|
||
|
fi
|
||
|
done
|
||
|
let "DISPLAY++"
|
||
|
|
||
|
echo $DISPLAY
|
||
|
|
||
|
# add user file
|
||
|
echo "$DISPLAY" > /var/lib/vnc/${USER}
|
||
|
chmod 644 /var/lib/vnc/${USER}
|
||
|
|
||
|
/usr/local/bin/startvnc
|