blob: 0c1d344a45cdb7d4b737cc03d3a5cb8f1278e448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# nodm configuration file
# Controls the user that is used to automatically log in
NODM_USER='{user}'
# Options to pass to the X server (for example: "vt7 -nolisten
# tcp")
NODM_X_OPTIONS='vt7 -nolisten tcp'
# Minimum time (in seconds) that a session should last in order
# for nodm to decide that it has not quit too soon. If an X
# session will run for less than this time, nodm will wait an
# increasing bit of time before restarting it.
NODM_MIN_SESSION_TIME=60
# X session command (default: /etc/X11/Xsession). It is run using
# the shell, so it can be any shell command.
NODM_XSESSION='/home/{user}/.xinitrc'
# Timeout (in seconds) to wait for X to be ready to accept
# connections. If X is not ready before this timeout, it is killed
# and restarted.
NODM_X_TIMEOUT=20
|