Created
January 27, 2012 14:19
-
-
Save mazurov/1688988 to your computer and use it in GitHub Desktop.
VNC server configuration
This file contains 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
#!/bin/sh | |
# File should be executable: chmod +x ~/.vnc/xstartup | |
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources | |
xsetroot -solid grey | |
vncconfig -iconic & | |
xterm -font -*-fixed-medium-r-*-*-20-*-*-*-*-*-iso8859-* -geometry 80x24+10+10 -ls -title "$VNCDESKTOP | |
Desktop" & | |
wm=`which icewm mwm twm | head -1` | |
$wm & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment