Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions h-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ process_user_config() {
# Check if modifications were made, if not, use original parameter
[[ "$param" != "$modified_param" ]] && param=$modified_param

if [[ "$value" =~ \$\(.*\) ]]; then
value=$(eval echo "$value")
fi
# Check if value exists before updating Settings
if [[ ! -z "$value" ]]; then
if [[ "$param" == "overwrites" ]]; then
Expand Down