openhab-core/bundles/org.openhab.ui.iconset.classic/icons/_iconminify
Markus Reiter b6ed251c88 Add new icons and delete legacy icons.
- Camera
- CO2
- Flow
- Gas
- Line (decline/incline/stagnation)
- Microphone
- Motion
- Move
- Pressure
- Rain
- Signal (0-4)
- Smoke
- Television (on/off)
- Zoom
2016-02-18 19:43:24 +01:00

25 lines
388 B
Bash
Executable File

#!/bin/sh
#
# Minify .png files using imageoptim.
#
# Can be installed with NPM.
# npm install -g imageoptim-cli
#
# Note: The GUI application also has to be installed.
# brew cask install imageoptim
#
if type imageoptim &>/dev/null; then
if [ "$1" != '' ] ; then
for file in $1*.png; do
echo $file | imageoptim
done
else
imageoptim -d "$(dirname $0)"
fi
fi