Corrected a huge mistake in the checkout_config method

This commit is contained in:
Karma Riuk 2021-03-07 23:22:31 +01:00
parent 3cb720bc6d
commit e87d53c2ba

View File

@ -65,7 +65,7 @@ notify () {
local cmd="dunstify -h int:value:$volume -t $NOTIFICATION_TIMEOUT -h string:x-dunst-stack-tag:volume -i \"$icon\" \"Volume ($volume%)\"" local cmd="dunstify -h int:value:$volume -t $NOTIFICATION_TIMEOUT -h string:x-dunst-stack-tag:volume -i \"$icon\" \"Volume ($volume%)\""
[[ $NOTIFICATION_ENABLED -eq 1 ]] && sh -c "$cmd" [[ $NOTIFICATION_ENABLED -eq 1 ]] && sh -c "$cmd"
verbose && ( [[ $NOTIFICATION_ENABLED -eq 1 ]] && echo "Notified with \`$cmd\`" || echo "Didn't notify" ) # verbose && ( [[ $NOTIFICATION_ENABLED -eq 1 ]] && echo "Notified with \`$cmd\`" || echo "Didn't notify" )
} }
@ -81,14 +81,18 @@ get_parser_location () {
checkout_config () { checkout_config () {
local parser_location="$(get_parser_location)" local parser_location="$(get_parser_location)"
[[ -z "$parser_location" ]] && verbose && echo "Unable to find the 'read_ini.sh' file, which is used to read the config file. Will be using the default values of the script." && return 0 if [[ ! -z "$parser_location" ]]; then
verbose && echo "Sourcing the ini parser"
source "$parser_location"
verbose && echo "Sourcing the ini parser" if [[ -f "$CONFIG_PATH" ]]; then
source "$parser_location" verbose && echo "Reading the config file '$CONFIG_PATH'"
read_ini "$CONFIG_PATH"
verbose && echo "Reading the config file" else
read_ini "$CONFIG_PATH" verbose && echo "Unable to find the config file '$CONFIG_PATH', using default script values"
fi
else
verbose && echo "Unable to find the 'read_ini.sh' file, which is used to read the config file. Will be using the default vlaues of the script."
fi
VOLUME_CONTROLLER=${INI__Controller__volume_controller:-$DEFAULT_VOLUME_CONTROLLER} VOLUME_CONTROLLER=${INI__Controller__volume_controller:-$DEFAULT_VOLUME_CONTROLLER}
INCREASE_FLAG=${INI__Controller__increase_flag:-$DEFAULT_INCREASE_FLAG} INCREASE_FLAG=${INI__Controller__increase_flag:-$DEFAULT_INCREASE_FLAG}