Add environment bin dir, add inkscape and krita to arch privisioning

This commit is contained in:
Daniel Flanagan 2017-04-14 15:23:55 -05:00
parent 27d7419591
commit 4952f8ceb5
2 changed files with 7 additions and 3 deletions

View File

@ -10,7 +10,7 @@ pacaur -S \
ttf-opensans ttf-dejavu ttf-liberation \
avr-libc avr-gcc dfu-programmer dfu-util \
xorg-xbacklight \
gimp \
gimp inkscape krita \
audacity \
reptyr \
cmake python python2-pip \

View File

@ -3,8 +3,12 @@
export GOPATH="$HOME/.go"
# PATH=$PATH:$APPENDED_PATH
PATH=$PATH:$GOPATH/bin
PATH=$PATH:$DOTFILES_PATH/bin
PATH=$PATH:"$GOPATH/bin"
PATH=$PATH:"$DOTFILES_PATH/bin"
if [ -d "$HOME/.bin" ]; then
PATH=$PATH:"$HOME/.bin"
fi
if command -v ruby >/dev/null 2>&1; then
PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH"