summaryrefslogtreecommitdiffstats
path: root/core/modules/kiosk-chromium/data/opt/openslx/pam/hooks/session-open.d/00-chromium-policies
blob: 9f7712d249b3f66bb45c74b3985ca19d3e2df2ab (plain) (blame)
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
#!/bin/bash
# ^SOURCED, actually running in ash

. /opt/openslx/config

# creates managed policy file, those settings cannot be changed by the user
# (if he even gets to the settings dialog in the first place)
create_chromium_policies() {
	if [ -n "$SLX_BROWSER_BOOKMARKS" ]; then
		bookmarkbar=true
	else
		bookmarkbar=false
	fi

	cat <<- EOF > "/etc/chromium-browser/policies/managed/kiosk-mode.json"
	{
		"AutoFillEnabled": false,
		"BackgroundModeEnabled": false,
		"BookmarkBarEnabled": $bookmarkbar,
		"DefaultBrowserSettingEnabled": true,
		"DownloadRestrictions": 3,
		"HomepageLocation": "$SLX_BROWSER_URL",
		"NewTabPageLocation": "$SLX_BROWSER_URL",
		"PasswordManagerEnabled": false,
		"RestoreOnStartup": 4,
		"RestoreOnStartupURLs": "$SLX_BROWSER_URL",
		"ShowAppsShortcutInBookmarkBar": false,
		"TranslateEnabled": false
	}
	EOF
}

if [ "${PAM_SERVICE//autologin/}" != "$PAM_SERVICE" -a "$PAM_TTY" = ":0" ]; then
	create_chromium_policies
fi
true