this will probably cause a merge conflict

This commit is contained in:
Paul Fey 2025-01-01 16:34:16 +01:00
parent e4d4ea30cf
commit 6d65a574df
5 changed files with 469 additions and 50 deletions

7
main
View file

@ -22,6 +22,13 @@ fi
#
# Source the normal configuration
source "${CONFIG_PATH}"
# Add ~/.local/bin and ~/bin to the PATH
if [ -d "$HOME/bin" ]; then
export PATH="$HOME/bin:$PATH"
fi
if [ -d "$HOME/.local/bin" ]; then
export PATH="$HOME/.local/bin:$PATH"
fi
#
# Detect Device Arch
arch="$(uname -m | tr '[:upper:]' '[:lower:]')"