aboutsummaryrefslogtreecommitdiff
path: root/kitty/kitty-themes/.tools/generate_themes_previews.sh
blob: 63e5825e5a821b8bc761ad0f18df0b7c225cba4f (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
#!/usr/bin/env bash
# This script generate all preview images for the themes

root="$(git rev-parse --show-toplevel)"
tools="$root/.tools"

PATH=$tools:$PATH

# new kitty window, return its id
id=$(kitty @ new-window --title themes --window-type os --cwd "$tools")
# start bash without reading the profile nor the configuration
kitty @ send-text --match id:"$id" "/usr/bin/env bash --noprofile --norc\n"
kitty @ set-font-size 24

# save all preview in this directory
previews="$root/_previews"
if [ ! -d "$previews" ]; then
  mkdir "$previews"
fi

while read -r theme
do
  echo "Genereting theme preview for $theme"
  preview_directory=$previews/$(basename "${theme%.*}")
  [ ! -d "$preview_directory" ] && mkdir "$preview_directory"
  preview_filename=$previews/$(basename "${theme%.*}")/preview.png
  generate_theme_preview.sh "$id" "$theme" "$preview_filename"
  mogrify -resize 1024x\> "$preview_filename"
done < /dev/stdin

kitty @ close-window --match id:"$id"
kitty @ set-font-size 16