
* Add omarchy to system path * Remove unnecessary duplicate * Remove path def since it's global now * Migration for system-wide path * Remove debug code * Refresh after update * Add common state script * Restart on state detected * Set state instead * Export own path for menu
18 lines
412 B
Plaintext
18 lines
412 B
Plaintext
# History control
|
|
shopt -s histappend
|
|
HISTCONTROL=ignoreboth
|
|
HISTSIZE=32768
|
|
HISTFILESIZE="${HISTSIZE}"
|
|
|
|
# Autocompletion
|
|
if [[ ! -v BASH_COMPLETION_VERSINFO && -f /usr/share/bash-completion/bash_completion ]]; then
|
|
source /usr/share/bash-completion/bash_completion
|
|
fi
|
|
|
|
# Set complete path
|
|
export PATH="./bin:$HOME/.local/bin:$PATH"
|
|
set +h
|
|
|
|
# Omarchy path
|
|
export OMARCHY_PATH="/home/$USER/.local/share/omarchy"
|