diff options
author | Indrajith K L | 2023-09-08 14:43:41 +0530 |
---|---|---|
committer | Indrajith K L | 2023-09-08 14:43:41 +0530 |
commit | 0f144c1ef9d831b1c663ef998f40e22c33156d9e (patch) | |
tree | dd20b22ce18b5e6e0b00b43d1b5a2699792563f1 /.config/kitty/kitty-themes/.tools/markdown.sh | |
download | DotFiles-0f144c1ef9d831b1c663ef998f40e22c33156d9e.tar.gz DotFiles-0f144c1ef9d831b1c663ef998f40e22c33156d9e.tar.bz2 DotFiles-0f144c1ef9d831b1c663ef998f40e22c33156d9e.zip |
* Adds Basic dot files configs
Diffstat (limited to '.config/kitty/kitty-themes/.tools/markdown.sh')
-rwxr-xr-x | .config/kitty/kitty-themes/.tools/markdown.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.config/kitty/kitty-themes/.tools/markdown.sh b/.config/kitty/kitty-themes/.tools/markdown.sh new file mode 100755 index 0000000..0fb08ba --- /dev/null +++ b/.config/kitty/kitty-themes/.tools/markdown.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash + +previews_root=$1 +# usually this value: https://raw.githubusercontent.com/dexpota/kitty-themes-website/master +url_root=$2 + +for f in $(find "$previews_root/previews" -maxdepth 1 -mindepth 1 -type d | sort); do + preview_file="$f"/preview.png + theme=$(basename $f) + relative_path=$(realpath --relative-to="$previews_root" "$preview_file") + header=`basename $theme | sed 's/_/ /g'` + image="![image]($url_root/$relative_path)" + echo \#\# $header + echo $image +done |