Add more tools
This commit is contained in:
parent
eb14a6d8ec
commit
52b766e18e
4 changed files with 23 additions and 3 deletions
9
files/bashrc.d/00-winpty.sh
Normal file
9
files/bashrc.d/00-winpty.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
# HAS_WINPTY="${HAS_WINPTY:-}"
|
||||
# export HAS_WINPTY
|
||||
# # Force shell restart in case winpty is not set
|
||||
# if [ -z "$HAS_WINPTY" ]; then
|
||||
# HAS_WINPTY=1
|
||||
# exec winpty $SHELL
|
||||
# fi
|
||||
|
5
files/bashrc.d/70-util-moz-vpn.sh
Normal file
5
files/bashrc.d/70-util-moz-vpn.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
MOZ_TOKEN_FILE="$HOME/.config/mozilla-vpn/token"
|
||||
if [ -f "$MOZ_TOKEN_FILE" ]; then
|
||||
. "$MOZ_TOKEN_FILE"
|
||||
fi
|
6
files/bashrc.d/70-util-travis.sh
Normal file
6
files/bashrc.d/70-util-travis.sh
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
# added by travis gem
|
||||
if [ -f "$HOME/.travis/travis.sh" ]; then
|
||||
. "$HOME/.travis/travis.sh"
|
||||
fi
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
export TRELLO_USER=glenux
|
||||
export TRELLO_KEY=58117ebf843d49b05bca074c5fd520ee
|
||||
export TRELLO_TOKEN=011311626e32209450bb05fafad4bd6c64f1f95355f2f853b919a4d7ff2c89cf
|
||||
if [ -f "$HOME/.config/trello/glenux" ]; then
|
||||
. "$HOME/.config/trello/glenux"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue