A collection of scripts

fix hex to rgb conversion

yemou 8a580e2a e1ba1ef8

Changed files
+1 -1
thm
+1 -1
thm
···
hex_r=${hex%????}
hex_g=${hex#??}
hex_g=${hex_g%??}
-
hex_b=${hex%????}
+
hex_b=${hex#????}
printf '%d,%d,%d' "0x$hex_r" "0x$hex_g" "0x$hex_b"
}