Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inadarei/dotfiles
Irakli's Bash Dotfiles
https://github.com/inadarei/dotfiles
Last synced: 23 days ago
JSON representation
Irakli's Bash Dotfiles
- Host: GitHub
- URL: https://github.com/inadarei/dotfiles
- Owner: inadarei
- Created: 2014-12-13T21:19:08.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-10-16T21:21:58.000Z (about 2 years ago)
- Last Synced: 2024-04-14T07:48:02.953Z (7 months ago)
- Language: Shell
- Size: 28.3 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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:
```console
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:1. install https://github.com/VundleVim/Vundle.vim
2. Link config file by running `ln -s ~/irakli-dotfiles/dot_vimrc ~/.vimrc`
2. Install required Vundle plugins by running `vim +PluginInstall +qall`
3. Log out and log back into the session## Examples
1. Using FFMPeg via Dockerized alias:
```
ffmpeg -i {input}.mov -vcodec h264 -acodec aac -strict -2 {output}.mp4
```