Compare commits
No commits in common. "cc365d0998f48e80d6a12903e9f6297a6afcef01" and "890f98738983c91211afec4ce2c01b780c02519d" have entirely different histories.
cc365d0998
...
890f987389
10
README.md
10
README.md
@ -4,14 +4,9 @@ This installs and Configures the following:
|
||||
- Cinnamon Desktop
|
||||
- LightDM Autologin
|
||||
- Specific Raspberry Settings
|
||||
# Some predefined Kodi settings
|
||||
- German localization
|
||||
- Simple IPTV with german TV channels
|
||||
- Autoupdate Addons
|
||||
- optional predefined repos for Mediathekview and Jellyfin (asks at first startup)
|
||||
- Some other optional addons (asks for activation at forst start
|
||||
- ...
|
||||
|
||||
## Raspberry 4/5
|
||||
|
||||
### Install Raspberry Pi OS
|
||||
- Downlaod/Install/Start Raspberry Pi Imager (https://www.raspberrypi.com/software/)
|
||||
- Model: Raspberry Pi 4/5
|
||||
@ -22,6 +17,7 @@ This installs and Configures the following:
|
||||
- Define Username "user".
|
||||
- Prepare the SD-Card
|
||||
- Boot your pi with the prepared SD-Card
|
||||
|
||||
### after install
|
||||
- Boot your pi with the prepared SD-Card
|
||||
#### Login
|
||||
|
20
raspi.sh
20
raspi.sh
@ -3,6 +3,8 @@
|
||||
# https://www.raspberrypi.com/documentation/computers/configuration.html
|
||||
raspi-config nonint do_ssh 0
|
||||
raspi-config nonint do_vnc 0
|
||||
#raspi-config nonint do_boot_behaviour B1
|
||||
#raspi-config nonint do_wayland W1
|
||||
raspi-config nonint do_change_locale de_DE.UTF-8
|
||||
raspi-config nonint do_boot_splash 1
|
||||
raspi-config nonint do_boot_behaviour B4
|
||||
@ -41,13 +43,11 @@ update-locale
|
||||
|
||||
apt-get update
|
||||
|
||||
# autoupdate after startup
|
||||
echo "@reboot root /usr/local/sbin/autoupdate.sh" >>/etc/crontab
|
||||
|
||||
cd /root
|
||||
rm -f install.sh
|
||||
wget https://gitea.ds9.dedyn.io/olli/debian.ansible.basics/raw/branch/main/install.sh
|
||||
|
||||
#export GITSRVURL="ssh://git@gitea.ds9.dedyn.io:333/olli"
|
||||
|
||||
export PLAYBOOKS="debian.ansible.basics
|
||||
gtc-rename
|
||||
@ -159,19 +159,29 @@ chown ${user}: /home/${user} /home/${user}/.xsessionrc /home/${user}/.config /ho
|
||||
[ -d /home/${user}/.kodi/addons ] || mkdir -p /home/${user}/.kodi/addons
|
||||
cd /home/${user}/.kodi/addons
|
||||
|
||||
# jellyfin repo
|
||||
# jellyfin from jellyfin repo
|
||||
if ! [ -d repository.jellyfin.kodi ]
|
||||
then
|
||||
wget https://kodi.jellyfin.org/repository.jellyfin.kodi.zip
|
||||
unzip repository.jellyfin.kodi.zip
|
||||
fi
|
||||
if ! [ -d plugin.video.jellyfin ]
|
||||
then
|
||||
wget https://kodi.jellyfin.org/py3/plugin.video.jellyfin/resources/plugin.video.jellyfin-1.0.4%2Bpy3.zip
|
||||
unzip plugin.video.jellyfin-1.0.4+py3.zip
|
||||
fi
|
||||
|
||||
# mediathekview repo
|
||||
# mediathekview from mediathekview repo
|
||||
if ! [ -d repository.mediathekview ]
|
||||
then
|
||||
wget https://kodirepo.mediathekview.de/repo-mv/repository.mediathekview/repository.mediathekview-1.0.0.zip
|
||||
unzip repository.mediathekview-1.0.0.zip
|
||||
fi
|
||||
if ! [ -d plugin.video.mediathekview ]
|
||||
then
|
||||
wget https://kodirepo.mediathekview.de/repo-matrix/plugin.video.mediathekview/plugin.video.mediathekview-1.1.3.zip
|
||||
unzip plugin.video.mediathekview-1.1.3.zip
|
||||
fi
|
||||
|
||||
## officiall addons
|
||||
# german lang
|
||||
|
Loading…
Reference in New Issue
Block a user