Backgrounds added

This commit is contained in:
Jesko Anschütz 2025-02-01 13:08:35 +01:00
parent bb3a6332c7
commit 7f9b3690de
12 changed files with 11 additions and 4 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View file

@ -61,3 +61,9 @@ Wenn du das Board per MQTT steuern willst (siehe hier: https://github.com/olialb
Wenn du von verschiedenen Servern/Rechnern aus auf den infoscreen zugreifen möchtest, kannst du hier die Keys eintragen. Diese werden sowohl für den Nutzer als auch root auf dem Raspi gesetzt.
- roles/sshKeys/vars/main.yml
# bekannte ungelöste Probleme
## Sprachauswahl chrome
bei manchen Seiten (blöderweise auch der Webuntis-Vertretungsplan-Seite) kommt oben rechts eine Auswahl zwischen English und German. Die geht auch nicht von alleine weg.
### workaround
mit MQTT lässt sich ein Mausklick auf der Seite simulieren, der die Meldung entfernt. (der MQTT-Cronjob erledigt das, aber natürlich klappt das nur, wenn man die MQTT-Geschichte auch installiert...)

View file

@ -9,6 +9,7 @@
raspi_user: morz # leider nochmal definieren, für become_user in den Rollen.
infoscreen_name: "{{ inventory_hostname }}"
infoscreen_url: "https://info.morz.de/infoscreen/index.php"
splashscreen: lmn-infoscreen.png # MUSS PNG sein in roles/lmnStuff/files
prepareHost: yes
lmnStuff: yes
enableMQTTFeature: no

BIN
roles/.DS_Store vendored Normal file

Binary file not shown.

BIN
roles/lmnStuff/.DS_Store vendored Normal file

Binary file not shown.

BIN
roles/lmnStuff/files/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 301 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,016 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View file

@ -1,17 +1,17 @@
---
# tasks file for azitStuff
# Hintergrundbild kopieren
- name: Kopiere background.png nach splashscreen
- name: Kopiere Background nach splashscreen
copy:
src: files/background.png
src: "files/{{ splashscreen }}"
dest: /boot/firmware/splash.png
owner: root
group: root
mode: '0644'
when: lmnStuff
- name: Kopiere background.png nach /opt/custompios
- name: Kopiere Background nach /opt/custompios
copy:
src: files/background.png
src: "files/{{ splashscreen }}"
dest: /opt/custompios/background.png
owner: "{{ raspi_user }}"
group: "{{ raspi_user }}"