diff options
author | davidovski <david@davidovski.xyz> | 2022-07-30 18:36:34 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-07-30 18:36:34 +0000 |
commit | e7b2de40c6d03f3a5b4fb3906ef826ad169a7cb2 (patch) | |
tree | 6fbd6b2465552826c740c7efd5c492c865b1bfec /src/profile.sh | |
parent | d24c110caab48002edb5a3e2c41876e6e0a7a6ed (diff) |
sysroot is now included in functions themselvesv1.7.2
Diffstat (limited to 'src/profile.sh')
-rwxr-xr-x | src/profile.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/profile.sh b/src/profile.sh index c2bda20..165bf0a 100755 --- a/src/profile.sh +++ b/src/profile.sh @@ -1,7 +1,7 @@ #!/bin/sh -. /usr/lib/colors.sh -. /usr/lib/glyphs.sh +#include colors.sh +#include glyphs.sh export HBAR_COMPLETE="-c ${GREEN}${BG_DEFAULT}" export HBAR_RED="-c ${BLACK}${BG_RED}" @@ -17,7 +17,7 @@ export REPOS="$(parseconf -v repos)" export SOURCES="$(parseconf sources.*)" export PACKAGES_DIR=$(parseconf -v dir.packages) -export INSTALLED_DIR=${SYSROOT}$(parseconf -v dir.installed) +export INSTALLED_DIR=$(parseconf -v dir.installed) export KEYCHAIN_DIR=$(parseconf -v dir.keychain) export CACHE_DIR=$(parseconf -v dir.cache) |