papirus-icon-theme/tools
2016-12-09 16:40:58 +02:00
..
_test
work Add new sizes for devices 2016-12-09 16:40:58 +02:00
_fix_color_scheme.sh
README.md
run_on_dirs.sh
run_on_files.sh
svgo.yml

Tools

  • run_on_dirs.sh DIRECTORY... — optimizes and fixes SVG files in the directory
  • run_on_files.sh FILE... — optimizes and fixes the SVG files
  • _fix_color_scheme.sh FILE... — looks in the SVG files for certain colors and replaces them with the corresponding stylesheet class. Fixes the color scheme after Inkscape
  • svgo.ymlSVGO configuraion

Useful snippets

Optimize and fix SVG files that are added or modified but not committed (recommended)

git status --porcelain | awk '/A|M/{print $2}' | xargs ./tools/run_on_files.sh

Optimize and fix SVG files that are committed in 043906b

git show --name-only 043906b | xargs ./tools/run_on_files.sh