add de cosmic to new flake based approach
This commit is contained in:
parent
b69246de06
commit
985d584213
14 changed files with 426 additions and 68 deletions
|
@ -1,7 +1,11 @@
|
|||
# Check if ~/.config/environment exists and source all files within it
|
||||
if [ -d "$HOME/.config/environment" ]; then
|
||||
for file in "$HOME/.config/environment/"*; do
|
||||
[ -r "$file" ] && . "$file"
|
||||
if [ -r "$file" ]; then
|
||||
if ! . "$file"; then
|
||||
echo "Failed to source $file"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue