This commit is contained in:
teldra 2021-05-12 17:06:42 +02:00
parent fbbe819091
commit bf90f69455
2 changed files with 5 additions and 2 deletions

View File

@ -7,6 +7,10 @@ appendpath () {
esac
}
appendpath "${HOME}/.local/bin"
if [ $(id -u) -eq 0 ]; then
appendpath "/root/.local/bin"
else
appendpath "/home/$(id -un)/.local/bin"
fi
export PATH

View File

@ -50,4 +50,3 @@ if [[ ! "${cfg[de]}" == "none" ]]; then
fi
servicesenable "$networkmanager"