redox/config/wayland.toml
2025-11-05 13:37:05 -07:00

35 lines
560 B
TOML

# X11 configuration
include = ["desktop.toml"]
# Override the default settings here
# General settings
[general]
# Filesystem size in MiB
filesystem_size = 4096
# Package settings
[packages]
mesa = {}
smallvil = {}
wayland-rs = {}
xkeyboard-config = {}
[[files]]
path = "/usr/lib/init.d/10_wayland_env"
data = """
export XDG_RUNTIME_DIR /run/user/0
mkdir -p $XDG_RUNTIME_DIR
export WAYLAND_DISPLAY wayland-1
"""
[[files]]
path = "/usr/lib/init.d/30_wayland"
mode = 0o755
data = """
env LD_DEBUG=all smallvil_smallvil
sleep 2
wayland-rs_simple_window
"""