mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-22 02:19:31 -07:00
15 lines
238 B
Bash
15 lines
238 B
Bash
#!/bin/sh
|
|
|
|
[ -z "$1" ] && exit 1
|
|
color=$1
|
|
perc=${2:-"40%"}
|
|
|
|
cd $HOME/Pictures/Backgrounds
|
|
for i in .monotiles/*; do
|
|
file="monotiles/$(basename "$i")"
|
|
cp -f "$i" $file
|
|
#flawed
|
|
convert $file -fill "$color" -colorize "$perc" $file
|
|
done
|
|
|