icons_size.sh 234 B

12345
  1. #!/bin/sh
  2. # Transforms an icon size from the Icon Theme Specification to rsvg-convert(1) options
  3. #sed -r -e 's;^([^x]*)x([^@]*)$;-w \1 -h \2;' -e 's;^([^x]*)x([^@]*)@(.*)$;-w \1 -h \2 -z \3;'
  4. sed -r 's;^([^x]*)x([^@]*)$;-w \1 -h \2;'