Einstellungen von Tobi uebernommen und entsprechend die Chrome Einstellungen fuer die LH-BBG.

This commit is contained in:
Steffen Taubenheim-Probst
2021-06-25 23:15:16 +02:00
parent bef33a28d6
commit 0215ede06d
7 changed files with 88 additions and 0 deletions

View File

@ -0,0 +1 @@
CHROMIUM_FLAGS="--no-default-browser-check"

View File

@ -0,0 +1,4 @@
{
"AutoFillEnabled": false,
"PasswordManagerEnabled": false
}

View File

@ -0,0 +1,3 @@
{
"NewTabPageLocation" : "https://wiki.lebenshilfe-bbg.de/wiki/doku.php?id=hidden:portal"
}

View File

@ -0,0 +1,3 @@
{
"NewTabPageLocation" : "https://wiki.lebenshilfe-bbg.de/wiki/doku.php?id=hidden:portal"
}

36
etc/rc.local Executable file
View 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