From b5805601a1b01b9c0e8f3f66e74404d8528af475 Mon Sep 17 00:00:00 2001 From: Neal Probert Date: Fri, 13 May 2022 10:22:30 -0400 Subject: [PATCH] Updated shell rcs --- dot/bashrc | 8 -------- dot/zshrc | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/dot/bashrc b/dot/bashrc index 7bc41a3..70aa895 100644 --- a/dot/bashrc +++ b/dot/bashrc @@ -1,13 +1,5 @@ # NTCNA V2X development -# QT -QTVER=5.15.2 -#QTVER=6.3.0 -if [ -d /opt/Qt/$QTVER ]; then - export PATH=/opt/Qt/$QTVER/gcc_64/bin:$PATH -# export LD_LIBRARY_PATH=/opt/Qt/$QTVER/gcc_64/lib -fi - # Python and VirtualEnv if [ -d ~/.local/bin ]; then export PATH=~/.local/bin:$PATH diff --git a/dot/zshrc b/dot/zshrc index ae90a1d..98500af 100644 --- a/dot/zshrc +++ b/dot/zshrc @@ -11,6 +11,17 @@ if [ -x /usr/local/bin/virtualenvwrapper.sh ]; then source /usr/local/bin/virtualenvwrapper.sh fi +# Android Studio +if [ -d ~/android-studio ]; then + export PATH=$PATH:~/android-studio/bin +fi + +# ROS 1 +if [ -f /opt/ros/noetic/setup.bash ]; then + # 20.04/22.04 + source /opt/ros/noetic/setup.bash + export PYTHONPATH=$PYTHONPATH:$HOME/catkin_ws/devel/lib/python3/dist-packages +fi # ROS 2 #if [ -f /opt/ros/foxy/setup.bash ]; then # 20.04/22.04 @@ -35,3 +46,8 @@ if [ -d $HOME/PyVehicle/classes ]; then export PYTHONPATH=$PYTHONPATH:$HOME/PyVehicle/classes:$HOME/PyVehicle/classes/j2735 fi #export NTCNA_DVIHMI_PATH=$HOME/PyVehicle/ntcna_dvihmi + +# Anaconda +if [ -d $HOME/anaconda3 ]; then + export PATH=$PATH:$HOME/anaconda3/bin +fi