summaryrefslogtreecommitdiffstats
path: root/.local/bin/slider
diff options
context:
space:
mode:
authorJonatan6 <jonatan.gud.hum@gmail.com>2021-02-10 17:47:30 +0100
committerGitHub <noreply@github.com>2021-02-10 17:47:30 +0100
commit165f25c3eb9f15af8587663de509ec89053ac307 (patch)
treef55c1762c50d3deb89d8055e7818a9ec68c52c87 /.local/bin/slider
parent8f36b8feb83e2a75f39b9b2c28e25c310d1ffbbd (diff)
downloadeibhear-165f25c3eb9f15af8587663de509ec89053ac307.tar.gz
eibhear-165f25c3eb9f15af8587663de509ec89053ac307.tar.zst
eibhear-165f25c3eb9f15af8587663de509ec89053ac307.zip
make it possible to change the font for text slides
I set free-sans to be the default, because it seems that that is what imagemagick is uses, when you don't specify a font.
Diffstat (limited to '.local/bin/slider')
-rwxr-xr-x.local/bin/slider4
1 files changed, 3 insertions, 1 deletions
diff --git a/.local/bin/slider b/.local/bin/slider
index d8d87b1..cb9a881 100755
--- a/.local/bin/slider
+++ b/.local/bin/slider
@@ -12,6 +12,7 @@ cache="${XDG_CACHE_HOME:-$HOME/.cache}/slider"
while getopts "hvrpi:c:a:o:d:f:t:e:x:" o; do case "${o}" in
c) bgc="$OPTARG" ;;
t) fgc="$OPTARG" ;;
+ f) font="$OPTARG" ;;
i) file="$OPTARG" ;;
a) audio="$OPTARG" ;;
o) outfile="$OPTARG" ;;
@@ -34,6 +35,7 @@ while getopts "hvrpi:c:a:o:d:f:t:e:x:" o; do case "${o}" in
-c color of background (use html names, black is default)
-t text color for text slides (white is default)
-s text font size for text slides (150 is default)
+ -f text font for text slides (FreeSans is default)
-o output video file
-e if no audio given, the time in seconds that the last slide will be shown (5 is default)
-x resolution (1920x1080 is default)
@@ -96,7 +98,7 @@ do
convert -size "${res:-1920x1080}" canvas:"${bgc:-black}" -gravity center "$content" -resize 1920x1080 -composite "$prepdir/$base"
else
{ [ ! -f "$prepdir/$base" ] || [ -n "${redo+x}" ] ;} &&
- convert -size "${res:-1920x1080}" -background "${bgc:-black}" -fill "${fgc:-white}" -pointsize "${ppt:-150}" -gravity center label:"$content" "$prepdir/$base"
+ convert -size "${res:-1920x1080}" -background "${bgc:-black}" -fill "${fgc:-white}" -font "${font:-FreeSans}" -pointsize "${ppt:-150}" -gravity center label:"$content" "$prepdir/$base"
fi
# If the first line, do not write yet.