Last active
June 25, 2018 19:10
-
-
Save luispabon/87899d4c4adab6dd6599965d60d64c6f to your computer and use it in GitHub Desktop.
Unity Ubuntu Bionic post install
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/bash | |
| # I recommend you first install ubuntu-unity-desktop, do not clean off apt cache, then sudo apt autoremove --purge "gnome*" | |
| # then install again ubuntu-unity-desktop without rebooting once and with a network connection. This gets rid of Gnome | |
| # entirely except for what unity needs to function | |
| # Run this if the background image on the login greeter for your user doesn't change as you change desktop backgrounds | |
| gsettings org.gnome.settings-daemon.plugins.background active true | |
| # This will install a patched version of nemo without cinnamon deps, then make it the default | |
| sudo add-apt-repository ppa:mc3man/bionic-noprop | |
| sudo apt install nemo | |
| xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search | |
| # You should be good to restart now | |
| # If after installing nemo you cannot right-click on the desktop, add `nemo-desktop` to your session start via the startup | |
| # applications config application. Obv you need to install nemo as above. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment