Last active
May 17, 2016 06:57
-
-
Save ldct/4fda5fb6f345aff2b0ea 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
sudo apt-get install awesome | |
sudo mount /dev/cdrom /mnt | |
cd /mnt | |
sudo ./VBoxLinuxAdditions.run | |
reboot | |
sudo apt-get remove --purge libreoffice* rhythmbox thunderbird ubuntu-docs samba* | |
# bluez* gnome-user-guide | |
sudo apt-get clean | |
sudo apt-get autoremove | |
sudo apt-get install git build-essential curl xclip nautilus | |
sudo apt-get install zsh | |
# install oh-my-zsh | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
xclip -sel clip < ~/.ssh/id_rsa.pub | |
# paste into github | |
rm -r Desktop Documents Music Pictures Public Templates Videos examples.desktop | |
git config --global user.email "[email protected]" | |
git config --global user.name "Li Xuanji" | |
git config --global push.default simple | |
mkdir share | |
sudo mount -t vboxsf cs231n ~/share/ | |
# install nvm | |
Create the file ~/.config/gtk-3.0/gtk.css | |
TerminalWindow .notebook tab:active { | |
background-color: #300A24; | |
} | |
TerminalWindow .notebook { | |
border: 0; | |
border-radius: 0; | |
padding: 3; | |
background-color: #300A24; | |
color: #fff; | |
} | |
TerminalWindow .notebook tab { | |
background-color: #444444; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment