Last active
December 22, 2015 12:48
-
-
Save pyalot/6474434 to your computer and use it in GitHub Desktop.
ubuntu 13.04 install script for gtx-780 and cyborg rat9 mouse
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
## create backup of home! ## | |
## part 1 before reboot, update system ## | |
apt-get update | |
apt-get upgrade | |
shutdown -r now | |
## part 2 after first reboot install nvidia driver that works ## | |
apt-add-repository ppa:ubuntu-x-swat/x-updates | |
apt-get update | |
apt-get install nvidia-310 nvidia-settings 310 | |
shutdown -r now | |
## part 3 after second reboot, install software, setup mouse ## | |
apt-get install aptitude vim psensor hamster-applet smuxi | |
echo "pointer = 1 2 3 4 5 6 7 8 9 10 11 12 0 0 0 0 0 0 0 0 0" > /etc/X11/Xmodmap | |
shutdown -r now | |
## part 4 after third reboot, reinstate settings ## | |
mkdir <home>/.local/share/hamster-applet | |
cp <backup>/.local/share/hamster-applet/hamster.db <home>/.local/share/hamster-applet/ | |
cp -pr <backup>/.config/google-chrome/Default/* <home>/.config/google-chrome/Default | |
cp <backup>/.config/smuxi/smuxi-engine.ini <home>/.config/smuxi/smuxi-engine.ini | |
cp <backup>/.vimrc <home/.vimrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment