#!/usr/bin/env bash
#clear
#     _    _           ____  ____        _ _
#    / \  | | _____  _|  _ \| __ )  __ _| | |
#   / _ \ | |/ _ \ \/ / | | |  _ \ / _` | | |
#  / ___ \| |  __/>  <| |_| | |_) | (_| | | |
# /_/   \_\_|\___/_/\_\____/|____/ \__,_|_|_|
#
#	Script  : .bash_variables
#	Author  : AlexDBall
#	Created : 21-09-24
#
#
# Variables file for bash options & settings
#

# PATH
export PATH=$PATH:/sbin:/snap/bin:$HOME/.local/bin

# COLORS
cyan="\e[36m\]"
lcyan="\e[96m\]"
magenta="\e[35m\]"
def="\e[m\]"

# PROMPT
CUSTOM_PROMPT=1

if [ $CUSTOM_PROMPT == 1  ]; then
	export PS1="\n${magenta}pwd${def} : ${cyan}\w\[${def}\n\[${lcyan}->\[${def} "
else
	export PS1='\u@\h:\w\$ '
fi

if [ -x /usr/bin/dircolors ]; then
	test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
fi

# Watch
export WATCH_INTERVAL=5

