64035ac463
Prepare for better device categorization by moving everything to testing subdir first. [skip-ci]: chicken-egg problem: passing pmaports CI depends on pmbootstrap MR depends on this MR Related: postmarketos#16
16 lines
381 B
Bash
16 lines
381 B
Bash
#!/bin/sh
|
|
|
|
# Run a few weston demos, because the postmarketos-demos program depends
|
|
# on xwayland for now (Alpine's GTK3 isn't configured for Wayland
|
|
# support yet.)
|
|
if [ $(tty) = "/dev/tty1" ]; then
|
|
(
|
|
sleep 3;
|
|
export XDG_RUNTIME_DIR=/tmp/0-runtime-dir
|
|
weston-smoke &
|
|
weston-simple-damage &
|
|
weston-editor &
|
|
weston-terminal --shell=/usr/bin/htop &
|
|
) > /dev/null &
|
|
fi
|
|
|