Skip to content
Snippets Groups Projects
Commit 9ef8414f authored by Johannes Marbach's avatar Johannes Marbach
Browse files

Grab screenshots via fbcat to fix colors

parent fc997252
No related branches found
No related tags found
No related merge requests found
Showing
with 50 additions and 45 deletions
......@@ -109,7 +109,15 @@ Buffyboard uses [squeekboard layouts] converted to C via [squeek2lvgl]. To regen
$ ./regenerate-layouts.sh
```
from the root of the repository.
## Generating screenshots
To generate screenshots in a variety of common sizes, install [fbcat], build buffyboard and then run
```
$ sudo ./regenerate-screenshots _build/buffyboard
```
where `_build/buffyboard` is the location of the buffyboard binary.
# Acknowledgements
......@@ -127,6 +135,7 @@ Buffyboard was inspired by [fbkeyboard].
[LVGL]: https://lvgl.io
[arrow-alt-circle-up]: https://fontawesome.com/v5.15/icons/arrow-alt-circle-up?style=solid
[buffyboard.conf]: ./buffyboard.conf
[fbcat]: https://github.com/jwilk/fbcat
[fbkeyboard]: https://github.com/bakonyiferenc/fbkeyboard
[inih]: https://github.com/benhoyt/inih
[libinput]: https://gitlab.freedesktop.org/libinput/libinput
......
......@@ -2,19 +2,13 @@
# Change this depending on what device you're generating the screenshots on
fb_res=1920x1080
fb_depth=8
fb_format=rgba
executable=$1
outdir=screenshots
config=buffyboard-screenshots.conf
themes=(
breezy-light
breezy-dark
pmos-light
pmos-dark
)
root=$(git rev-parse --show-toplevel)
themes_c=$root/shared/themes.c
resolutions=(
# Nokia N900
......@@ -34,6 +28,11 @@ resolutions=(
1920x1080
)
if ! which fbcat > /dev/null 2>&1; then
echo "Error: Could not find fbcat" 1>&2
exit 1
fi
if [[ ! -f $executable || ! -x $executable ]]; then
echo "Error: Could not find executable at $executable" 1>&2
exit 1
......@@ -50,14 +49,8 @@ touchscreen=false
EOF
}
# Hide cursor
echo -e '\033[?25l'
function clean_up() {
rm -f $config
# Show cursor
echo -e '\033[?25h'
}
trap clean_up EXIT
......@@ -67,7 +60,9 @@ mkdir "$outdir"
readme="# Buffyboard themes"$'\n'
for theme in ${themes[@]}; do
clear # Blank the screen
while read -r theme; do
write_config $theme
readme="$readme"$'\n'"## $theme"$'\n\n'
......@@ -78,23 +73,24 @@ for theme in ${themes[@]}; do
sleep 3 # Wait for UI to render
cat /dev/fb0 > "$outdir/$theme-$res"
convert -size $fb_res \
-depth $fb_depth \
fbcat /dev/fb0 > "$outdir/$theme-$res.ppm"
kill -15 $pid
convert \
-size $fb_res \
$outdir/$theme-$res.ppm \
screenshot-background.png \
$fb_format:"$outdir/$theme-$res" \
-crop $res+0+0 \
-gravity NorthWest \
-composite \
"$outdir/$theme-$res.png"
rm "$outdir/$theme-$res"
kill -15 $pid
rm "$outdir/$theme-$res.ppm"
readme="$readme<img src=\"$theme-$res.png\" alt=\"$res\" height=\"300\"/>"$'\n'
sleep 1 # Delay to prevent terminal mode set / reset interference
done
done
done < <(grep "name =" "$themes_c" | grep -o '".*"' | tr -d '"' | sort)
echo -n "$readme" > "$outdir/README.md"
buffyboard/screenshot-background.png

17.1 KiB | W: | H:

buffyboard/screenshot-background.png

7.22 KiB | W: | H:

buffyboard/screenshot-background.png
buffyboard/screenshot-background.png
buffyboard/screenshot-background.png
buffyboard/screenshot-background.png
  • 2-up
  • Swipe
  • Onion skin
# Buffyboard themes
## breezy-light
<img src="breezy-light-480x800.png" alt="480x800" height="300"/>
<img src="breezy-light-800x480.png" alt="800x480" height="300"/>
<img src="breezy-light-540x960.png" alt="540x960" height="300"/>
<img src="breezy-light-960x540.png" alt="960x540" height="300"/>
<img src="breezy-light-768x1024.png" alt="768x1024" height="300"/>
<img src="breezy-light-1024x768.png" alt="1024x768" height="300"/>
<img src="breezy-light-1280x800.png" alt="1280x800" height="300"/>
<img src="breezy-light-1440x720.png" alt="1440x720" height="300"/>
<img src="breezy-light-1920x1080.png" alt="1920x1080" height="300"/>
## breezy-dark
<img src="breezy-dark-480x800.png" alt="480x800" height="300"/>
......@@ -24,17 +12,17 @@
<img src="breezy-dark-1440x720.png" alt="1440x720" height="300"/>
<img src="breezy-dark-1920x1080.png" alt="1920x1080" height="300"/>
## pmos-light
## breezy-light
<img src="pmos-light-480x800.png" alt="480x800" height="300"/>
<img src="pmos-light-800x480.png" alt="800x480" height="300"/>
<img src="pmos-light-540x960.png" alt="540x960" height="300"/>
<img src="pmos-light-960x540.png" alt="960x540" height="300"/>
<img src="pmos-light-768x1024.png" alt="768x1024" height="300"/>
<img src="pmos-light-1024x768.png" alt="1024x768" height="300"/>
<img src="pmos-light-1280x800.png" alt="1280x800" height="300"/>
<img src="pmos-light-1440x720.png" alt="1440x720" height="300"/>
<img src="pmos-light-1920x1080.png" alt="1920x1080" height="300"/>
<img src="breezy-light-480x800.png" alt="480x800" height="300"/>
<img src="breezy-light-800x480.png" alt="800x480" height="300"/>
<img src="breezy-light-540x960.png" alt="540x960" height="300"/>
<img src="breezy-light-960x540.png" alt="960x540" height="300"/>
<img src="breezy-light-768x1024.png" alt="768x1024" height="300"/>
<img src="breezy-light-1024x768.png" alt="1024x768" height="300"/>
<img src="breezy-light-1280x800.png" alt="1280x800" height="300"/>
<img src="breezy-light-1440x720.png" alt="1440x720" height="300"/>
<img src="breezy-light-1920x1080.png" alt="1920x1080" height="300"/>
## pmos-dark
......@@ -47,3 +35,15 @@
<img src="pmos-dark-1280x800.png" alt="1280x800" height="300"/>
<img src="pmos-dark-1440x720.png" alt="1440x720" height="300"/>
<img src="pmos-dark-1920x1080.png" alt="1920x1080" height="300"/>
## pmos-light
<img src="pmos-light-480x800.png" alt="480x800" height="300"/>
<img src="pmos-light-800x480.png" alt="800x480" height="300"/>
<img src="pmos-light-540x960.png" alt="540x960" height="300"/>
<img src="pmos-light-960x540.png" alt="960x540" height="300"/>
<img src="pmos-light-768x1024.png" alt="768x1024" height="300"/>
<img src="pmos-light-1024x768.png" alt="1024x768" height="300"/>
<img src="pmos-light-1280x800.png" alt="1280x800" height="300"/>
<img src="pmos-light-1440x720.png" alt="1440x720" height="300"/>
<img src="pmos-light-1920x1080.png" alt="1920x1080" height="300"/>
buffyboard/screenshots/breezy-dark-1024x768.png

13.4 KiB | W: | H:

buffyboard/screenshots/breezy-dark-1024x768.png

12.1 KiB | W: | H:

buffyboard/screenshots/breezy-dark-1024x768.png
buffyboard/screenshots/breezy-dark-1024x768.png
buffyboard/screenshots/breezy-dark-1024x768.png
buffyboard/screenshots/breezy-dark-1024x768.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-dark-1280x800.png

14 KiB | W: | H:

buffyboard/screenshots/breezy-dark-1280x800.png

12.8 KiB | W: | H:

buffyboard/screenshots/breezy-dark-1280x800.png
buffyboard/screenshots/breezy-dark-1280x800.png
buffyboard/screenshots/breezy-dark-1280x800.png
buffyboard/screenshots/breezy-dark-1280x800.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-dark-1440x720.png

14 KiB | W: | H:

buffyboard/screenshots/breezy-dark-1440x720.png

12.8 KiB | W: | H:

buffyboard/screenshots/breezy-dark-1440x720.png
buffyboard/screenshots/breezy-dark-1440x720.png
buffyboard/screenshots/breezy-dark-1440x720.png
buffyboard/screenshots/breezy-dark-1440x720.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-dark-1920x1080.png

18 KiB | W: | H:

buffyboard/screenshots/breezy-dark-1920x1080.png

17.2 KiB | W: | H:

buffyboard/screenshots/breezy-dark-1920x1080.png
buffyboard/screenshots/breezy-dark-1920x1080.png
buffyboard/screenshots/breezy-dark-1920x1080.png
buffyboard/screenshots/breezy-dark-1920x1080.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-dark-480x800.png

10.6 KiB | W: | H:

buffyboard/screenshots/breezy-dark-480x800.png

9.46 KiB | W: | H:

buffyboard/screenshots/breezy-dark-480x800.png
buffyboard/screenshots/breezy-dark-480x800.png
buffyboard/screenshots/breezy-dark-480x800.png
buffyboard/screenshots/breezy-dark-480x800.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-dark-540x960.png

11.2 KiB | W: | H:

buffyboard/screenshots/breezy-dark-540x960.png

10.3 KiB | W: | H:

buffyboard/screenshots/breezy-dark-540x960.png
buffyboard/screenshots/breezy-dark-540x960.png
buffyboard/screenshots/breezy-dark-540x960.png
buffyboard/screenshots/breezy-dark-540x960.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-dark-768x1024.png

12.6 KiB | W: | H:

buffyboard/screenshots/breezy-dark-768x1024.png

11.9 KiB | W: | H:

buffyboard/screenshots/breezy-dark-768x1024.png
buffyboard/screenshots/breezy-dark-768x1024.png
buffyboard/screenshots/breezy-dark-768x1024.png
buffyboard/screenshots/breezy-dark-768x1024.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-dark-800x480.png

11.1 KiB | W: | H:

buffyboard/screenshots/breezy-dark-800x480.png

9.55 KiB | W: | H:

buffyboard/screenshots/breezy-dark-800x480.png
buffyboard/screenshots/breezy-dark-800x480.png
buffyboard/screenshots/breezy-dark-800x480.png
buffyboard/screenshots/breezy-dark-800x480.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-dark-960x540.png

12 KiB | W: | H:

buffyboard/screenshots/breezy-dark-960x540.png

10.5 KiB | W: | H:

buffyboard/screenshots/breezy-dark-960x540.png
buffyboard/screenshots/breezy-dark-960x540.png
buffyboard/screenshots/breezy-dark-960x540.png
buffyboard/screenshots/breezy-dark-960x540.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-light-1024x768.png

13.3 KiB | W: | H:

buffyboard/screenshots/breezy-light-1024x768.png

12.2 KiB | W: | H:

buffyboard/screenshots/breezy-light-1024x768.png
buffyboard/screenshots/breezy-light-1024x768.png
buffyboard/screenshots/breezy-light-1024x768.png
buffyboard/screenshots/breezy-light-1024x768.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-light-1280x800.png

13.9 KiB | W: | H:

buffyboard/screenshots/breezy-light-1280x800.png

12.9 KiB | W: | H:

buffyboard/screenshots/breezy-light-1280x800.png
buffyboard/screenshots/breezy-light-1280x800.png
buffyboard/screenshots/breezy-light-1280x800.png
buffyboard/screenshots/breezy-light-1280x800.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-light-1440x720.png

14 KiB | W: | H:

buffyboard/screenshots/breezy-light-1440x720.png

12.9 KiB | W: | H:

buffyboard/screenshots/breezy-light-1440x720.png
buffyboard/screenshots/breezy-light-1440x720.png
buffyboard/screenshots/breezy-light-1440x720.png
buffyboard/screenshots/breezy-light-1440x720.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-light-1920x1080.png

18 KiB | W: | H:

buffyboard/screenshots/breezy-light-1920x1080.png

17.3 KiB | W: | H:

buffyboard/screenshots/breezy-light-1920x1080.png
buffyboard/screenshots/breezy-light-1920x1080.png
buffyboard/screenshots/breezy-light-1920x1080.png
buffyboard/screenshots/breezy-light-1920x1080.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-light-480x800.png

10.6 KiB | W: | H:

buffyboard/screenshots/breezy-light-480x800.png

9.61 KiB | W: | H:

buffyboard/screenshots/breezy-light-480x800.png
buffyboard/screenshots/breezy-light-480x800.png
buffyboard/screenshots/breezy-light-480x800.png
buffyboard/screenshots/breezy-light-480x800.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-light-540x960.png

11.2 KiB | W: | H:

buffyboard/screenshots/breezy-light-540x960.png

10.5 KiB | W: | H:

buffyboard/screenshots/breezy-light-540x960.png
buffyboard/screenshots/breezy-light-540x960.png
buffyboard/screenshots/breezy-light-540x960.png
buffyboard/screenshots/breezy-light-540x960.png
  • 2-up
  • Swipe
  • Onion skin
buffyboard/screenshots/breezy-light-768x1024.png

12.5 KiB | W: | H:

buffyboard/screenshots/breezy-light-768x1024.png

12 KiB | W: | H:

buffyboard/screenshots/breezy-light-768x1024.png
buffyboard/screenshots/breezy-light-768x1024.png
buffyboard/screenshots/breezy-light-768x1024.png
buffyboard/screenshots/breezy-light-768x1024.png
  • 2-up
  • Swipe
  • Onion skin
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment