blob: a24c2ac9238ada3c5e1d86e62caf9a8d821d8591 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/bash
ls -1r *.lua *.txt | head -12 >.filelist
echo "$(date --iso=m) [$(basename "$(realpath . )")]" >.datelist
cat .filelist | while read line ; do
echo "$(date --iso=m -r ${line}) ${line}" >>.datelist
done
anytopnm .datelist >.image
WIDTH=$(head -2 .image | tail -1 | awk '{ print $1 }')
HEIGHT=$(head -2 .image | tail -1 | awk '{ print $2 }')
echo $WIDTH
echo $HEIGHT
if [ $WIDTH -gt $HEIGHT ] ; then
ppmmake white 1 $((WIDTH-HEIGHT)) >.image_temp
pnmcat -tb .image .image_temp >.image2
fi
if [ $WIDTH -lt $HEIGHT ] ; then
ppmmake white $((HEIGHT-WIDTH)) 1 >.image_temp
pnmcat -lr .image .image_temp >.image2
fi
pnmtopng .image2 >textures/advtrains_platform_version_node.png
|