mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-03 10:08:45 +08:00
35 lines
560 B
TOML
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
|
|
"""
|