1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-11 14:25:57 +03:00
wezterm/ci/make-color-screen-shots.sh
Wez Furlong 27217992f2 docs: update colorschemes screenshots
I really want to replace these with simple html to avoid bloating
the repo too much over time.
2022-04-05 08:18:01 -07:00

23 lines
491 B
Bash
Executable File

#!/bin/bash
# Use eg: `xwininfo -int` to get the id of a wezterm
# and pass it to this script
WINID=$1
cd ../iTerm2-Color-Schemes/dynamic-colors
shots=../../wezterm/docs/colorschemes
printf "\e]0;wezterm\e\\"
for scheme in *.sh ; do
clear
echo $scheme
prefix=$shots/$(echo $scheme | cut -c1 | tr '[:upper:]' '[:lower:]')
mkdir -p $prefix
bash "./$scheme"
bash "../tools/screenshotTable.sh"
sleep 0.2
xwd -id $WINID | convert "xwd:-" "png:$prefix/${scheme%.sh}.png"
done