wip
This commit is contained in:
9
selfdrive/assets/strip-svg-metadata.sh
Normal file
9
selfdrive/assets/strip-svg-metadata.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
# sudo apt install scour
|
||||
|
||||
for svg in $(find icons/ -type f | grep svg$); do
|
||||
# scour doesn't support overwriting input file
|
||||
scour $svg --remove-metadata $svg.tmp
|
||||
mv $svg.tmp $svg
|
||||
done
|
||||
Reference in New Issue
Block a user