gilbras / dotfiles-3

Irakli's Bash Dotfiles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Irakli's Dotfiles

Prerequisites

In order to use Docker aliases (in .docker file) you will need to make sure you have a working Docker environment. On Mac OS-X you can easily get one by installing https://www.docker.com/docker-toolbox. If you fancy Parallels over Virtualbox, make sure to check out: http://kb.parallels.com/en/123356

Installation

  1. Clone the repository:

    git clone https://github.com/inadarei/dotfiles.git irakli-dotfiles
  2. Edit your ~/.profile, ~/.bash_profile or ~/.bashrc file and add the following:

    dotfiles_loc="$HOME/irakli-dotfiles"
    if [ -d $dotfiles_loc ]; then
      for file in $dotfiles_loc/.*; do
        filename=${file##*/}
        if [ -f $file -a $filename != '.vimrc' ]; then
          source "$file";
        fi
      done
    fi
    
  3. Install .vimrc:

    ln -s ~/irakli-dotfiles/.vimrc ~/.vimrc

Examples

  1. Using FFMPeg via Dockerized alias:

    ffmpeg -i {input}.mov -vcodec h264 -acodec aac -strict -2 {output}.mp4
    

About

Irakli's Bash Dotfiles