File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ DISPLAY=:0 exec mate-session
Original file line number Diff line number Diff line change 1+ # Note: this script assumes you have Xming or similar installed and configured
2+ # If not, please install VcXsrv first. If you have chocolatey,try (in powershell): choco install Xming
3+
4+ # note, you'll need to use sudo chmod 777 <filename> to allow the provided run scripts to work
5+
6+ # set up display for xming VcXsrv
7+ echo " export DISPLAY=:0.0" >> ~ /.bashrc
8+
9+ # set up dbus
10+ sudo sed -i ' s$<listen>.*</listen>$<listen>tcp:host=localhost,port=0</listen>$' /etc/dbus-1/session.conf
11+ sudo sed -i ' s$<listen>.*</listen>$<listen>tcp:host=localhost,port=1</listen>$' /etc/dbus-1/system.conf
12+
13+ # install Mate
14+
15+ sudo apt-add-repository ppa:ubuntu-mate-dev/ppa
16+ sudo apt-add-repository ppa:ubuntu-mate-dev/trusty-mate
17+ sudo apt-get update
18+ sudo apt-get dist-upgrade
19+ sudo apt-get install mate-desktop-environment-extras
20+
21+ sudo apt-get install unity-settings-daemon # fix for mate-settings-daemon not working
22+ # http://www.ajopaul.com/2012/05/30/ubuntu-fix-for-unable-to-start-the-settings-manager-mate-settings-daemon/
23+
24+ # install XFCE4
25+ sudo apt-get install xubuntu-desktop
26+
27+
28+
29+ # install KDE
30+
31+ # install Gnome
You can’t perform that action at this time.
0 commit comments