dotfiles/.profile
Andrei Jiroh Halili 21db77e121
Update PATH on .profile
Also in this commit:
* Updated the default PGP keyids to export for the private part. Also
  use long keyids to avoid possible confusion on GPG side.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>
2023-06-13 09:05:23 +00:00

25 lines
604 B
Bash

#!/usr/bin/env sh
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
export PATH="/usr/local/bin${PATH:+:}$PATH" # ~vern specifics and more
mesg n 2> /dev/null || true
# then import the rest
source "$HOME/.env"
source "$HOME/.config/aliases"
export POSIX_PROFILE_SOURCED=true
# how about detecting local configs
if [ -f "$HOME/.config/localconfig.env" ]; then
. "$HOME/.config/localconfig.env"
fi
# Added by Toolbox App
export PATH="$PATH:/home/ajhalili2006/.local/share/JetBrains/Toolbox/scripts"