-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
78 lines (62 loc) · 3.78 KB
/
.bashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# .bashrc
# ----------------------------------------------------------------------------------------------- #
#
# B888888b. 888b d888
# 888 888 8888b d8888
# 8888888 888 888 8888b. 888Y8b.d8P888
# 888 B888888P" 888b 888 Y888P 888
# 888888 888 .d888888 888 Y8P 888
# 888 888 88 888 888 ' 888
# o 8888888 888 'd888888 888 888
#
# ----------------------------------------------------------------------------------------------- #
# ----------------------------------------------------------------------------------------------- #
# Source Global Definitions
# ----------------------------------------------------------------------------------------------- #
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# ----------------------------------------------------------------------------------------------- #
# ----------------------------------------------------------------------------------------------- #
# Powerline Terminal
# ----------------------------------------------------------------------------------------------- #
if [ -f `which powerline-daemon` ]; then
powerline-daemon -q
POWERLINE_BASH_CONTINUATION=1
POWERLINE_BASH_SELECT=1
. /usr/share/powerline/bash/powerline.sh
fi
# export PATH="/home/avinash/Softwares/anaconda2/bin:$PATH"
export PATH="/home/avinash/Softwares/miniconda3/bin:$PATH"
# ----------------------------------------------------------------------------------------------- #
# ----------------------------------------------------------------------------------------------- #
# HEASOFT
# ----------------------------------------------------------------------------------------------- #
export PATH=/home/avinash/Softwares/fv:$PATH
# ----------------------------------------------------------------------------------------------- #
# ----------------------------------------------------------------------------------------------- #
# IRAF
# ----------------------------------------------------------------------------------------------- #
export IMTDEV=inet:5137
# ----------------------------------------------------------------------------------------------- #
# ----------------------------------------------------------------------------------------------- #
# MESA
# ----------------------------------------------------------------------------------------------- #
export MESASDK_ROOT=/home/avinash/Softwares/mesa/mesasdk
source $MESASDK_ROOT/bin/mesasdk_init.sh
export MESA_DIR=/home/avinash/Softwares/mesa/mesa-r10108
export OMP_NUM_THREADS=4
# ----------------------------------------------------------------------------------------------- #
# ----------------------------------------------------------------------------------------------- #
# DolPhot
# ----------------------------------------------------------------------------------------------- #
export PATH=/home/avinash/Softwares/HST_Reduction/dolphot2.0/bin:$PATH
# ----------------------------------------------------------------------------------------------- #
# ----------------------------------------------------------------------------------------------- #
# Aliases
# ----------------------------------------------------------------------------------------------- #
alias xgterm='ds9 & xgterm -sb -sl 2048 -fn 9x15 -title "Image Reduction and Analysis Facility (IRAF)" -geometry 100x80 -fg white -bg black -e cl &'
alias charm='bash /home/avinash/Softwares/pycharmv1.4/bin/pycharm.sh &' # PyCharm
alias desktop='ssh -X [email protected]' # Remote Login Desktop
alias delphinus='ssh -X avinash@delphinus'
# ----------------------------------------------------------------------------------------------- #