Weston: Difference between revisions
David Bailey (talk | contribs) (Redirect weston to wayland) Tag: New redirect |
(Removed redirect to Wayland) Tag: Removed redirect |
||
Line 1: | Line 1: | ||
# | == Installation == | ||
Steps to install Weston on Alpine 3.20 | |||
# doas apk add weston weston-backend-drm seatd weston-backend-wayland weston-shell-desktop weston-terminal font-dejavu | |||
# doas rc-update add seatd | |||
# doas adduser $USER seat | |||
# doas setup-devd udev | |||
# ~/.profile add: | |||
if [ -z "$XDG_RUNTIME_DIR" ]; then | |||
XDG_RUNTIME_DIR="/tmp/$(id -u)-runtime-dir" | |||
mkdir -pm 0700 "$XDG_RUNTIME_DIR" | |||
export XDG_RUNTIME_DIR | |||
fi | |||
# reboot | |||
# Start weston with: weston | |||
==== References ==== | |||
https://github.com/crftbt/OpenSourcedMe/blob/main/alpine/weston.md |
Revision as of 14:36, 26 May 2024
Installation
Steps to install Weston on Alpine 3.20
- doas apk add weston weston-backend-drm seatd weston-backend-wayland weston-shell-desktop weston-terminal font-dejavu
- doas rc-update add seatd
- doas adduser $USER seat
- doas setup-devd udev
- ~/.profile add:
if [ -z "$XDG_RUNTIME_DIR" ]; then XDG_RUNTIME_DIR="/tmp/$(id -u)-runtime-dir"
mkdir -pm 0700 "$XDG_RUNTIME_DIR" export XDG_RUNTIME_DIR fi
- reboot
- Start weston with: weston
References
https://github.com/crftbt/OpenSourcedMe/blob/main/alpine/weston.md