20 lines
339 B
Bash
20 lines
339 B
Bash
#!/bin/ash
|
|
|
|
### run as root
|
|
|
|
apk update
|
|
# Wayland, Labwc, DBus and Foot-Terminal
|
|
apk add wayland labwc foot xterm dbus
|
|
|
|
apk add seatd
|
|
rc-update add seatd
|
|
rc-service seatd start
|
|
|
|
adduser USER seat
|
|
|
|
apk add cargo wayland-dev libxkbcommon-dev
|
|
|
|
cargo install wdotool
|
|
|
|
echo 'export PATH="$HOME/.cargo/bin:$PATH"' >> ~/.profile
|
|
source ~/.profile |