Skip to content

Instantly share code, notes, and snippets.

@aschmoe
Last active April 16, 2016 23:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aschmoe/241bcc739f1f65639734 to your computer and use it in GitHub Desktop.
Save aschmoe/241bcc739f1f65639734 to your computer and use it in GitHub Desktop.
# 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"
@zeitan
Copy link

zeitan commented Apr 16, 2016

which version of ubuntu installed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment