diff --git a/.bash_aliases b/.bash_aliases index 773d68d..5a626ab 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -20,6 +20,10 @@ alias lock='xscreensaver-command --lock' alias meteo='curl -s --user-agent "USER FUCKING AGENT" "http://thefuckingweather.com/?where=Paris" | grep "

" | sed -r "s/.*>(.*)<.*/\1 OUTSIDE\!/g"' +if [ -d "$HOME/ryzom/client" ]; then + alias ryzom='cd $HOME/ryzom/client && ./ryzom_client' +fi + fliptable() { echo "(╯°□°)╯ ┻━┻"; } # Usage: venv project_name diff --git a/.bashrc b/.bashrc index 24054d2..44ab375 100644 --- a/.bashrc +++ b/.bashrc @@ -26,11 +26,6 @@ if [ -d "$HOME/.gem/ruby" ]; then done fi -# Ryzom -if [ -d "$HOME/ryzom/client" ]; then - export PATH="$PATH:$HOME/ryzom/client" -fi - # OS OS_TYPE=$(echo "$OSTYPE" | sed 's/\([a-zA-Z_\-]*\).*/\1/g')