Skip to content

Instantly share code, notes, and snippets.

@idvoretskyi
Last active March 22, 2018 22:52
Show Gist options
  • Select an option

  • Save idvoretskyi/abe6f576d54099493593800843338312 to your computer and use it in GitHub Desktop.

Select an option

Save idvoretskyi/abe6f576d54099493593800843338312 to your computer and use it in GitHub Desktop.
# 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