Fix resizing borders not showing in xfce desktop

This commit is contained in:
EliverLara
2019-07-23 11:05:18 -05:00
parent 59997b6b66
commit 0bc76e881b
17 changed files with 281 additions and 3 deletions

View File

@@ -1,4 +1,12 @@
set -l red (set_color -o red)
set -l cyan (set_color -o cyan)
for i in assets/*;
set -l file_name (basename $i .svg)
convert -background none $i ./$file_name'.png'
if test -f ./$file_name'.png'
echo $red$file_name exists
else
echo $cyan'Creating '$file_name'.png'
convert -background none $i ./$file_name'.png'
end
;end