You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.1 KiB
Bash
89 lines
2.1 KiB
Bash
#!/bin/bash
|
|
|
|
# ---------- sys ---------
|
|
lowercase=false
|
|
file=""
|
|
prefix=""
|
|
|
|
this_script=$(basename "$0")
|
|
script_help=$( cat << EOF
|
|
This script updates colors from Catppuccin v0.1.1 to v0.1.2
|
|
You can find previous versions of this script in each release.
|
|
|
|
Usages:
|
|
#0: ${this_script} <flag> [arg]
|
|
|
|
Flags:
|
|
-f, --file specify file (mandatory)
|
|
-l, --lowercase replaces with lowercased hex codes
|
|
-p, --prefix specify which prefix to use for the hex codes. Surround it with double quotes if needed.
|
|
-h, --help see this message
|
|
EOF
|
|
)
|
|
|
|
declare -A colors=(
|
|
# <old> -> new
|
|
["C6AAE8"]='DDB6F2' # mauve
|
|
["E5B4E2"]='F5C2E7' # pink
|
|
["E49CB3"]='E8A2AF' # maroon
|
|
["E38C8F"]='F28FAD' # red
|
|
["F7BE95"]='F8BD96' # peach
|
|
["ECDDAA"]='FAE3B0' # yellow
|
|
["B1E1A6"]='ABE9B3' # green
|
|
["B7E5E6"]='B5E8E0' # teal
|
|
["A3B9EF"]='96CDFB' # blue
|
|
["92D2E8"]='89DCEB' # sky
|
|
["15121C"]='131020' # black0
|
|
["1B1923"]='1A1823' # black1
|
|
["1E1E28"]='1E1D2F' # black2
|
|
["332E41"]='302D41' # black3
|
|
["DFDEF1"]='D9E0EE' # white
|
|
)
|
|
|
|
function update_colors() {
|
|
capitalization_char='\U' # uppercase
|
|
[[ $lowercase == true ]] && {
|
|
capitalization_char='\L' # lowercase
|
|
}
|
|
for clr in "${!colors[@]}"; do
|
|
echo -e " + ${clr} -> ${colors[$clr]}"
|
|
sed -i "s/${clr}/${prefix}${capitalization_char}${colors[$clr]}/gI" "$file"
|
|
done
|
|
}
|
|
|
|
main() {
|
|
if [[ ! "$#" -gt 0 ]]; then
|
|
echo -e "INFO: Please provide the file you want to update to Catppuccin v0.1.1"
|
|
else
|
|
while [ "$1" != "" ]; do
|
|
case $1 in
|
|
-f | --file)
|
|
file=$2
|
|
shift
|
|
;;
|
|
-l | --lowercase)
|
|
lowercase=true
|
|
;;
|
|
-p | --prefix)
|
|
prefix=$2
|
|
shift
|
|
;;
|
|
-h | --help)
|
|
echo "$script_help"
|
|
;;
|
|
*)
|
|
echo "ERROR: command ($1) not recognized"
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
[[ -f $file ]] && {
|
|
echo -e "INFO: Updating colors..."
|
|
update_colors "${1}"
|
|
} || echo "ERROR: File ${1} does not exist"
|
|
fi
|
|
}
|
|
|
|
main "$@"
|