From be5639d36f15cd853a188afafaabdba02dfdcfb1 Mon Sep 17 00:00:00 2001 From: Arne Keller Date: Tue, 5 Mar 2019 00:55:37 +0100 Subject: [PATCH] Add profilerc --- .profile | 30 ++++++++++++++++++++++++++++++ .profilerc | 3 +++ 2 files changed, 33 insertions(+) create mode 100644 .profile create mode 100644 .profilerc diff --git a/.profile b/.profile new file mode 100644 index 0000000..29bcde9 --- /dev/null +++ b/.profile @@ -0,0 +1,30 @@ +# Sample .profile for SuSE Linux +# rewritten by Christian Steinruecken +# +# This file is read each time a login shell is started. +# All other interactive shells will only read .bashrc; this is particularly +# important for language settings, see below. + +test -z "$PROFILEREAD" && . /etc/profile || true + +# Most applications support several languages for their output. +# To make use of this feature, simply uncomment one of the lines below or +# add your own one (see /usr/share/locale/locale.alias for more codes) +# This overwrites the system default set in /etc/sysconfig/language +# in the variable RC_LANG. +# +#export LANG=de_DE.UTF-8 # uncomment this line for German output +#export LANG=fr_FR.UTF-8 # uncomment this line for French output +#export LANG=es_ES.UTF-8 # uncomment this line for Spanish output + + +# Some people don't like fortune. If you uncomment the following lines, +# you will have a fortune each time you log in ;-) + +#if [ -x /usr/bin/fortune ] ; then +# echo +# /usr/bin/fortune +# echo +#fi + +export PATH="$HOME/.cargo/bin:$PATH" diff --git a/.profilerc b/.profilerc new file mode 100644 index 0000000..0690fe4 --- /dev/null +++ b/.profilerc @@ -0,0 +1,3 @@ +export LANG=de_DE.utf8 +export GOOGLE_APPLICATION_CREDENTIALS=$HOME/.config/GoogleAPI/client_secrets.json +export PATH="$HOME/.local/bin:$HOME/.cargo/bin:$PATH"