Created
May 25, 2023 04:26
-
-
Save imnotdev25/3f86d284e75678892e4907fb71b41532 to your computer and use it in GitHub Desktop.
my ./vnc/xstartup or Vnc config file for gnome
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
#!/bin/sh | |
export XKL_XMODMAP_DISABLE=1 | |
unset SESSION_MANAGER | |
unset DBUS_SESSION_BUS_ADDRESS | |
export XKL_XMODMAP_DISABLE=1 | |
export XDG_CURRENT_DESKTOP="GNOME-Flashback:Unity" | |
export XDG_MENU_PREFIX="gnome-flashback-" | |
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup | |
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources | |
xsetroot -solid grey | |
vncconfig -iconic & | |
gnome-session --session=gnome-flashback-metacity --disable-acceleration-check & | |
gnome-panel & | |
gnome-settings-daemon & | |
metacity & | |
nautilus & | |
gnome-terminal & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment