21 lines
681 B
TOML
21 lines
681 B
TOML
# The nanosm(1) configuration file.
|
|
|
|
[nanosm]
|
|
# The window manager you want to use. This is the first application
|
|
# launched
|
|
window-manager="/path/to/wm/binary --any-additional-args-here"
|
|
|
|
# Enable verbose debug logging. Only useful for debugging issues.
|
|
verbose=false
|
|
|
|
# Restart delay in seconds.
|
|
restart-delay=1
|
|
|
|
# Any applications besides your window manager you want to run at startup.
|
|
# Note that applications are executed in the order they are declared, but
|
|
# this will not hold true if any (or all apps) crash (they will be restarted
|
|
# effectively in a psuedorandom order).
|
|
[nanosm.apps]
|
|
lxpanel = { command = "lxpanel" }
|
|
pcmanfm-desktop = { command = "pcmanfm --desktop" }
|