Last active
April 16, 2016 23:33
-
-
Save aschmoe/241bcc739f1f65639734 to your computer and use it in GitHub Desktop.
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
# Ubuntu Gnome | |
## Arc Theme | |
sudo rm -rf /usr/share/themes/{Arc,Arc-Darker,Arc-Dark} | |
rm -rf ~/.local/share/themes/{Arc,Arc-Darker,Arc-Dark} | |
rm -rf ~/.themes/{Arc,Arc-Darker,Arc-Dark} | |
cd ~/.themes | |
git clone https://github.com/horst3180/arc-theme --depth 1 && cd arc-theme | |
./autogen.sh --prefix=/usr --with-gnome=3.16 | |
sudo make install | |
# Multiple displays are fucked | |
sudo xrandr --output eDP1 --auto --mode 1600x900 --output HDMI2 --auto --panning 1920x1080+1600+0 --scale 1x1 --right-of eDP1 | |
# Wifi | |
echo "options iwlwifi 11n_disable=8" | sudo tee -a /etc/modprobe.d/iwlwifi.conf | |
# Intel | |
sudo gedit /usr/share/X11/xorg.conf.d/20-intel.conf | |
Section "Device" | |
Identifier "Card0" | |
Driver "intel" | |
Option "Backlight" "intel_backlight" | |
Option "AccelMethod" "UXA" | |
BusID "PCI:0:2:0" | |
EndSection | |
# Chrome | |
## Edit launch | |
sudo gedit /usr/share/applications/google-chrome.desktop | |
#replace --> | |
#Exec=/usr/bin/google-chrome-stable %U | |
Exec=/usr/bin/google-chrome-stable --use-virtualized_gl_contexts=0 %U | |
## http://www.webupd8.org/2014/01/enable-hardware-acceleration-in-chrome.html | |
-> goto chrome://flags | |
-> enable "Override software rendering list" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
which version of ubuntu installed?