-
Notifications
You must be signed in to change notification settings - Fork 0
/
executable_dot_bash_profile.tmpl
35 lines (30 loc) · 1.1 KB
/
executable_dot_bash_profile.tmpl
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
# ~/.bash_profile: executed by bash(1) for login shells.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/login.defs
#umask 022
# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
PATH=~/bin:"${PATH}"
fi
<<<<<<< HEAD
#Specific configurations per device
{{ if eq .chezmoi.hostname "WeatherLight" }}
#Specific configurations for laptops: X1 and Vaio
=======
>>>>>>> d625b39e2a78fe257e06a878512517e354873d2b
# set PATH so it includes Android and Java
ANDROID_HOME="/home/kets/android/android-sdk-{{ .chezmoi.os }}/tools/"
ANDROID_HOME_ADB="/home/kets/android/android-sdk-{{ .chezmoi.os }}/platform-tools/"
JAVA_HOME="/usr/lib/jvm/java-6-sun-1.6.0.26/jre/bin/"
export PATH=$PATH:$ANDROID_HOME:$ANDROID_HOME_ADB:$JAVA_HOME
# set fancy colors from dircolors
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
<<<<<<< HEAD
{{ end }}
=======
>>>>>>> d625b39e2a78fe257e06a878512517e354873d2b