Add wayland config

This commit is contained in:
Jeremy Soller 2025-11-05 07:30:42 -07:00
parent c313e3932c
commit bf7b9742ea
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA
2 changed files with 28 additions and 0 deletions

25
config/wayland.toml Normal file
View File

@ -0,0 +1,25 @@
# 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 = {}
xkeyboard-config = {}
[[files]]
path = "/usr/lib/init.d/30_wayland"
mode = 0o755
data = """
export XDG_RUNTIME_DIR /run/user/0
mkdir -p $XDG_RUNTIME_DIR
env LD_DEBUG=all smallvil_smallvil
"""

View File

@ -0,0 +1,3 @@
# Wayland configuration
include = ["../wayland.toml"]