23 lines
513 B
Bash
Executable File
23 lines
513 B
Bash
Executable File
#!/bin/sh
|
|
|
|
path=$(dirname "$(readlink -f "$0")")
|
|
. "$path"/../.utils/apply-color-parse-arg
|
|
|
|
file="$path"/style.css
|
|
|
|
for file in "$path"/icons/*.svg; do
|
|
[ -f "$file" ] || continue
|
|
sed -i -E "s/(fill=\"#)([0-9A-Fa-f]{6})(\")/\1${colorHex}\3/" "$file" || {
|
|
log_error "Failed to edit ${file}"
|
|
exit 1
|
|
}
|
|
done
|
|
|
|
file="$path"/style.css
|
|
|
|
sed -i -E "s/(border-color:\s*#)([0-9A-Fa-f]{6})(;)/\1${colorHex}\3/" "$file" || {
|
|
log_error "Failed to edit ${file}"
|
|
exit 1
|
|
}
|
|
|
|
log_success "wlogout" |