Einstellungen von Tobi uebernommen und entsprechend die Chrome Einstellungen fuer die LH-BBG.
This commit is contained in:
1
etc/chromium-browser/default
Normal file
1
etc/chromium-browser/default
Normal file
@ -0,0 +1 @@
|
||||
CHROMIUM_FLAGS="--no-default-browser-check"
|
@ -0,0 +1,4 @@
|
||||
{
|
||||
"AutoFillEnabled": false,
|
||||
"PasswordManagerEnabled": false
|
||||
}
|
3
etc/chromium-browser/policies/managed/startup.json
Normal file
3
etc/chromium-browser/policies/managed/startup.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"NewTabPageLocation" : "https://wiki.lebenshilfe-bbg.de/wiki/doku.php?id=hidden:portal"
|
||||
}
|
3
etc/chromium-browser/policies/managed/startup2.json
Normal file
3
etc/chromium-browser/policies/managed/startup2.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"NewTabPageLocation" : "https://wiki.lebenshilfe-bbg.de/wiki/doku.php?id=hidden:portal"
|
||||
}
|
36
etc/rc.local
Executable file
36
etc/rc.local
Executable file
@ -0,0 +1,36 @@
|
||||
#!/bin/sh -e
|
||||
#
|
||||
# rc.local
|
||||
#
|
||||
# This script is executed at the end of each multiuser runlevel.
|
||||
# Make sure that the script will "exit 0" on success or any other
|
||||
# value on error.
|
||||
#
|
||||
# In order to enable or disable this script just change the execution
|
||||
# bits.
|
||||
#
|
||||
# By default this script does nothing.
|
||||
|
||||
sleep 10
|
||||
|
||||
|
||||
# Print the IP address
|
||||
_IP=$(hostname -I) || true
|
||||
if [ "$_IP" ]; then
|
||||
printf "My IP address is %s\n" "$_IP"
|
||||
fi
|
||||
|
||||
# set hostname
|
||||
if [ -f /boot/client-cfg/hostname.txt ]; then
|
||||
hostname --file /boot/client-cfg/hostname.txt
|
||||
fi
|
||||
|
||||
# set network
|
||||
|
||||
# start X environment
|
||||
if [ -f /boot/client-cfg/xinitrc ]; then
|
||||
ln -fs /boot/client-cfg/xinitrc /home/pi/.xinitrc;
|
||||
su -l pi -s /bin/bash -c 'startx' &
|
||||
fi
|
||||
|
||||
exit 0
|
Reference in New Issue
Block a user