dotfiles/run/.profile

37 lines
1.1 KiB
Plaintext
Raw Normal View History

# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# 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/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin directories
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
export PATH=$PATH:/opt/trello
#for i3 to use gnome control center
export XDG_CURRENT_DESKTOP=GNOME
2017-09-07 16:02:46 +00:00
# Colored Man Pages!
export LESS_TERMCAP_md=$'\e'"[1;36m"
export LESS_TERMCAP_me=$'\e'"[0m"
export LESS_TERMCAP_se=$'\e'"[0m"
export LESS_TERMCAP_so=$'\e'"[1;40;92m"
export LESS_TERMCAP_ue=$'\e'"[0m"
export LESS_TERMCAP_us=$'\e'"[1;32m"
2017-09-13 18:48:44 +00:00
## Add Applications to Path
export PATH="$HOME/bin:$HOME/.local/bin:/opt:$PATH"
export XDG_CURRENT_DESKTOP=GNOME