mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-22 04:44:19 +08:00
33 lines
548 B
TOML
33 lines
548 B
TOML
# Minimal desktop configuration
|
|
|
|
include = ["minimal.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 256
|
|
|
|
# Package settings
|
|
[packages]
|
|
orbdata = {}
|
|
orbital = {}
|
|
orbterm = {}
|
|
orbutils = {}
|
|
|
|
[[files]]
|
|
path = "/usr/lib/init.d/20_orbital"
|
|
data = """
|
|
requires_weak 10_net
|
|
notify audiod
|
|
nowait VT=3 orbital orblogin launcher
|
|
"""
|
|
|
|
# Override console config to not switch to VT 2
|
|
[[files]]
|
|
path = "/usr/lib/init.d/30_console"
|
|
data = """
|
|
requires_weak 20_orbital
|
|
nowait getty 2
|
|
nowait getty /scheme/debug/no-preserve -J
|
|
"""
|