i3-colors/scripts/gen-md-screenshots.sh
2019-10-07 15:51:13 -04:00

15 lines
347 B
Bash
Executable file

#!/bin/bash
wai=$(dirname $(readlink -f $0))
theme_loc="${wai}/../themes/"
git_root=$(git rev-parse --show-toplevel)
for shot in ${theme_loc}/*.jpg
do
name=$(basename ${shot})
name=${name%.*}
shot_path=$(realpath --relative-to="${git_root}" "${theme_log}/${shot}")
echo -e "${name}"':\n!['${name}']('${shot_path}')\n'
done