add 3llo - CLI for Trello

This commit is contained in:
Morgan Wattiez 2019-11-16 10:46:56 +01:00
parent f894a9c754
commit fc980718d6
5 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.retry *.retry
Gemfile.lock Gemfile.lock
.newjiraissue .newjiraissue
private_dot_3llo/config.sh

View File

@ -7,3 +7,5 @@ gem 'terjira'
gem 'terraforming' gem 'terraforming'
#Previously installed using #Previously installed using
#sudo gem install -n /usr/local/bin asciidoctor-pdf --pre #sudo gem install -n /usr/local/bin asciidoctor-pdf --pre
# 3llo - CLI for Trello
gem '3llo'

View File

@ -52,6 +52,7 @@ ln -snf ~/Code/dotfiles/dot_zshrc.pre-oh-my-zsh ~/.zshrc.pre-oh-my-zsh
ln -snf ~/Code/dotfiles/private_dot_ssh/config ~/.ssh/config ln -snf ~/Code/dotfiles/private_dot_ssh/config ~/.ssh/config
ln -snf ~/Code/dotfiles/requirements.txt ~/requirements.txt ln -snf ~/Code/dotfiles/requirements.txt ~/requirements.txt
ln -snf ~/Code/dotfiles/dot_surfraw.conf ~/.surfraw.conf ln -snf ~/Code/dotfiles/dot_surfraw.conf ~/.surfraw.conf
ln -snf ~/Code/dotfiles/private_dot_3llo/config.sh ~/.3llo_config
# Other symblinks + Install Docker Desktop for Mac # Other symblinks + Install Docker Desktop for Mac
case "$(uname -s)" in case "$(uname -s)" in

View File

@ -103,6 +103,7 @@ alias systeminfo='neofetch'
alias monitoring='glances' alias monitoring='glances'
alias ':q'='exit' alias ':q'='exit'
alias irc='weechat' alias irc='weechat'
alias trello='3llo'
# Show/hide hidden files in Finder # Show/hide hidden files in Finder
alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder" alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder"

View File

@ -120,5 +120,7 @@ case "$(uname -s)" in
export PATH="$PATH:/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/bin/:/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/bin:/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/bin" export PATH="$PATH:/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/bin/:/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/bin:/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/bin"
;; ;;
esac esac
. ~/.3llo_config
export GOPATH="$HOME/go" export GOPATH="$HOME/go"
export PATH="/usr/local/opt/grep/libexec/gnubin:$GOPATH/bin:$PATH" export PATH="/usr/local/opt/grep/libexec/gnubin:$GOPATH/bin:$PATH"