diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8e6aedd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +pwfonts/ diff --git a/bash_aliases b/bash_aliases index 7b1f6c9..b10fde3 100644 --- a/bash_aliases +++ b/bash_aliases @@ -52,6 +52,6 @@ alias pskill=doPsKill alias docker-nuke="docker rm $(docker ps -a -q) && docker rmi $(docker images -q)" alias dc='docker-compose' -alias docker-rm-untagged='docker rmi -f $(docker images | grep "^" | awk "{print $3}")'} +alias docker-rm-untagged='docker rmi -f $(docker images | grep "^" | awk "{print $3}")' diff --git a/install.sh b/install.sh index d84543a..849c36c 100755 --- a/install.sh +++ b/install.sh @@ -6,7 +6,7 @@ h dir=~/dotfiles # dotfiles directory olddir=~/dotfiles_old # old dotfiles backup directory -files="zshrc bashrc bash_aliases bash_profile bash_prompt bash_functions sqliterc" # list of files/folders to symlink in homedir +files="zshrc bash_aliases bash_functions sqliterc" # list of files/folders to symlink in homedir ########## @@ -32,5 +32,9 @@ done chmod +x $dir/dropbox.py ln -s $dir/dropbox.py ~/bin/dropbox.py -ln $dir/fonts ~/.fonts -fc-cache -f -v +#ln $dir/fonts ~/.fonts +#fc-cache -f -v + + +git clone https://github.com/powerline/fonts.git pwfonts +cd pwfonts && ./install.sh diff --git a/zshrc b/zshrc index 1ba5861..619ab13 100644 --- a/zshrc +++ b/zshrc @@ -2,12 +2,12 @@ # export PATH=$HOME/bin:/usr/local/bin:$PATH # Path to your oh-my-zsh installation. - export ZSH=/home/fergalm/.oh-my-zsh +export ZSH=/home/fergalm/.oh-my-zsh # Set name of the theme to load. Optionally, if you set this to "random" # it'll load a random theme each time that oh-my-zsh is loaded. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes -ZSH_THEME="agnoster" +ZSH_THEME="random" # Uncomment the following line to use case-sensitive completion. # CASE_SENSITIVE="true" @@ -54,6 +54,7 @@ ZSH_THEME="agnoster" plugins=(git) source $ZSH/oh-my-zsh.sh +source ~/.bash_aliases # User configuration