A collection of scripts

fix hex to rgb conversion

yemou 8a580e2a e1ba1ef8

Changed files
+1 -1
thm
+1 -1
thm
··· 12 12 hex_r=${hex%????} 13 13 hex_g=${hex#??} 14 14 hex_g=${hex_g%??} 15 - hex_b=${hex%????} 15 + hex_b=${hex#????} 16 16 printf '%d,%d,%d' "0x$hex_r" "0x$hex_g" "0x$hex_b" 17 17 } 18 18