papirus-icon-theme/tools/README.md
Sergei Eremenko 8e6a838abf Update tools
* combine scripts run_on_files.sh and run_on_dirs.sh into one
* add License/Waiver
* update README.md
2016-12-17 20:39:05 +02:00

21 lines
939 B
Markdown

# Tools
* `ffsvg.sh PATH...` — finds, fixes and cleans SVG files
* `_clean_style_attr.sh FILE...` — removes unused properties and removes properties with default values from style attributes inside SVG files (part of `ffsvg.sh`)
* `_fix_color_scheme.sh FILE...` — looks in the SVG files for certain colors and replaces them with the corresponding stylesheet class. Fixes a color scheme after Inkscape (part of `ffsvg.sh`)
* `_svgo.yml` — [SVGO](https://github.com/svg/svgo) configuraion (part of `ffsvg.sh`)
## 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/ffsvg.sh
```
Optimize and fix SVG files that are committed in [043906b](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/commit/043906b0edbcc86b732640bc391898d0aaaa410c)
```
git show --name-only 043906b | xargs ./tools/ffsvg.sh
```