From 73ae3a47a410eb2db9c3c776c0252e1feaeb2d7e Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Mon, 20 Feb 2017 10:06:38 +0100 Subject: Reorganise binaries --- bin/setbg-pgfplots | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 bin/setbg-pgfplots (limited to 'bin/setbg-pgfplots') diff --git a/bin/setbg-pgfplots b/bin/setbg-pgfplots deleted file mode 100755 index 7343f35..0000000 --- a/bin/setbg-pgfplots +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -SCR_WIDTH=1980 -SCR_HEIGHT=1080 -PADDING=50 -FONT_SIZE=20 - -let "SCR_WIDTH -= 2 * $PADDING" -let "SCR_WIDTH /= 2" -let "SCR_HEIGHT -= 2 * $PADDING" - -NR=$RANDOM -let "NR %= 524" - -wget -qO- "http://pgfplots.sourceforge.net/example_$NR.pdf" | convert -size "x$SCR_HEIGHT" -density 300 - /tmp/bg.png -wget -qO- "http://pgfplots.sourceforge.net/gallery.html" | sed -n "/example_$NR\.pdf/,/<\/div>/p" | tail -n +6 | head -n -1 | pygmentize -l latex -O font_size=$FONT_SIZE -o /tmp/bg-src.png - -montage -geometry "+$PADDING+$PADDING" /tmp/bg-src.png /tmp/bg.png "/tmp/bg-$NR.png" -rm /tmp/bg{,-src}.png - -feh -B white --bg-max "/tmp/bg-$NR.png" - -- cgit v1.2.3