Last active
December 5, 2016 11:26
-
-
Save nicolasramy/6325394 to your computer and use it in GitHub Desktop.
Ubuntu post install guide for Gnome 3
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
gsettings set org.gnome.shell.overrides button-layout close,minimize,maximize: | |
gconftool-2 --set /apps/metacity/general/button_layout --type string ":minimize,maximize,close" | |
gsettings set org.gnome.desktop.interface ubuntu-overlay-scrollbars false | |
http://www.thebinaryidiot.com/archives/2011/11/11/gnome-shell-3-2-and-multiple-monitors/ | |
dconf-editor | |
(boolean) | |
org.gnome.nautilus.preferences always-use-location-entry | |
## Dual screen fix | |
gsettings set org.gnome.shell.overrides workspaces-only-on-primary false | |
## Touchpad fix | |
synclient TapButton3=3 TapButton2=2 |
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
# Numix GTK3 | |
sudo add-apt-repository ppa:numix/ppa | |
sudo apt-get update && sudo apt-get install numix-gtk-theme | |
# Arc GTK3 | |
wget http://download.opensuse.org/repositories/home:Horst3180/xUbuntu_15.04/Release.key | |
sudo apt-key add - < Release.key | |
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/Horst3180/xUbuntu_16.04/ /' > /etc/apt/sources.list.d/arc-theme.list" | |
sudo apt-get update | |
sudo apt-get install arc-theme |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment