papirus-icon-theme/tools/README.md

24 lines
1.1 KiB
Markdown
Raw Normal View History

2016-12-05 16:33:56 -05:00
# Tools
* `ffsvg.sh PATH...` — finds, fixes and cleans SVG files
2017-05-13 13:39:55 -04:00
* `_clean_attrs.sed` — removes unused attributes and removes attributes with default values from elements inside SVG files (part of `ffsvg.sh`)
* `_clean_style_attr.sed` — 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`)
2017-05-13 13:39:55 -04:00
* `_scour.sh FILE...` — Scour wrapper (part of `ffsvg.sh`)
2021-09-23 11:33:17 -04:00
* `svgo.config.js` — [SVGO](https://github.com/svg/svgo) configuration (part of `ffsvg.sh`)
2016-12-05 16:33:56 -05:00
## Useful snippets
2016-12-07 16:59:10 -05:00
Optimize and fix SVG files that are added or modified but not committed (recommended)
2016-12-05 16:33:56 -05:00
```
git status --porcelain | awk '/A|M/{print $2}' | xargs ./tools/ffsvg.sh
2016-12-05 16:33:56 -05:00
```
2016-12-07 16:59:10 -05:00
Optimize and fix SVG files that are committed in [043906b](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/commit/043906b0edbcc86b732640bc391898d0aaaa410c)
2016-12-05 16:33:56 -05:00
```
git show --name-only 043906b | xargs ./tools/ffsvg.sh
2016-12-05 16:33:56 -05:00
```