-
Notifications
You must be signed in to change notification settings - Fork 17
/
touchui.default
53 lines (36 loc) · 1.4 KB
/
touchui.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Configuration for /etc/init.d/touchui
# The init.d script will only run if this variable non-empty.
TOUCHUI_USER=pi
# Where is the xinit file locatated
TOUCHUI_DIR="TouchUI-autostart"
# And what xinit file are we looking for
TOUCHUI_FILE="chromium.xinit"
# TouchUI server port
TOUCHUI_PORT="8888"
# Touch server host
TOUCHUI_URL="http://localhost:$TOUCHUI_PORT/"
# Command to hide cursor and window-manager before launching chromium
#TOUCHUI_EXECUTE=""
# Change chromium bin location
CHROME_BIN="chromium-browser"
# Path to the xinit executable, use this to override the default setting "/usr/bin/xinit"
#DAEMON=/path/to/xinit/executable
# What arguments to pass to xinit, usually no need to touch this
DAEMON_ARGS=/home/$TOUCHUI_USER/$TOUCHUI_DIR/$TOUCHUI_FILE
# Umask of files touchui generates, Change this to 000 if running touchui as its own, separate user
UMASK=022
# Process priority, 0 here will result in a priority 20 process.
# -2 ensures touchui has a slight priority over user processes.
NICELEVEL=-2
# Should we run at startup?
START=yes
# Should Chromium start with touch events? (false or true)
FORCE_TOUCH=false
# Enable or disable the screensaver
DISABLE_SCREENSAVER=false
# Autodetect OctoPi port number
AUTODETECT_PORT=true
# Path for the profile - defaults to ram disk to reduce writes
#CONFIG_DIR=/run/touchui-chromium/
# Proxy Server type (IPv4 or IPv6) - DEFAULT IPv4
#TOUCUI_SERVER_TYPE="IPv6"