Created
January 15, 2021 18:38
-
-
Save cetteup/a4e97419f8355a1cf51deb7780d6282c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install vino | |
gsettings set org.gnome.Vino view-only false | |
gsettings set org.gnome.Vino prompt-enabled false | |
gsettings set org.gnome.Vino authentication-methods "['vnc']" | |
echo -n "VNC Password: " && read -s vnc_password < /dev/tty && echo "" | |
gsettings set org.gnome.Vino vnc-password "$(echo $vnc_password | base64)" | |
unset $vnc_password | |
gsettings set org.gnome.Vino use-upnp false | |
gsettings set org.gnome.Vino icon-visibility client |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment