Last active
March 22, 2018 22:52
-
-
Save idvoretskyi/abe6f576d54099493593800843338312 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
| # Tips&trics for ChromeOS shell | |
| echo 'cd $HOME' >> ~/.bashrc | |
| # enable Ubuntu crouton stuff | |
| echo "alias ubuntu='sudo enter-chroot -n ubuntu'" >> ~/.bashrc | |
| echo "alias debian='sudo enter-chroot -n debian'" >> ~/.bashrc | |
| echo "alias gnome='sudo startgnome -X xorg -b -n debian'" >> ~/.bashrc | |
| echo "alias xubuntu='sudo startxfce4 -X xorg -b -n ubuntu'" >> ~/.bashrc | |
| echo "alias unity='sudo startunity -X xorg -b -n ubuntu'" >> ~/.bashrc | |
| echo "alias xfce4='sudo startxfce4 -X xorg -b -n ubuntu'" >> ~/.bashrc | |
| # some more ls aliases | |
| echo "alias ll='ls -alF'" >> ~/.bashrc | |
| echo "alias la='ls -A'" >> ~/.bashrc | |
| echo "alias l='ls -CF'" >> ~/.bashrc | |
| # vim setup | |
| echo "set nocompatible" >> ~/.vimrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment