Skip to content

Instantly share code, notes, and snippets.

@koesherbacon
Forked from gustafnk/post_install.sh
Created February 10, 2016 00:45
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 koesherbacon/6603b2e6c49e6265ae99 to your computer and use it in GitHub Desktop.
Save koesherbacon/6603b2e6c49e6265ae99 to your computer and use it in GitHub Desktop.
Post install for Manjaro XFCE Edition
####################################################
# Post install for Manjaro XFCE Edition
# Do not run this as a shell script
####################################################
## Install essentials
sudo pacman -S vim git curl
git config --global core.editor "vim"
## Install rvm (ruby)
\curl -sSL https://get.rvm.io | bash
# Remember to enable the setting "Run as login shell" and open a new terminal window
rvm install 2.1.2
## Install google-chrome
yaourt -S google-chrome
## Clone and install dotfiles
gem install homesick
homesick clone gustafnk/dotfiles
homesick symlink
## Fonts
yaourt -S ttf-ubuntu-font-family
## Transparent gnome-terminal
yaourt -S gnome-terminal-transparent
## Make gnome-terminal solarized
cd Documents
git clone https://github.com/Anthony25/gnome-terminal-colors-solarized
sudo pacman -S dconf
# Clone the terminal profile before installing solarized
cd gnome-terminal-colors-solarized
./install.sh
## Install cinnamon
sudo pacman -S cinnamon
## Install numlockx (TBD)
# Open cinnamon keyboard shortcuts settings, choose "Windows" tab and add
# * Maximize window: Shift-Super-Up
# * Minimize window: Shift-Super-Down
# Open cinnamon keyboard layout settings, press "Options..."
# * Caps Lock Key Behavior, "Make Caps Lock an additional ESC"
# * Switching to another layout, "Alt + Shift"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment