diff options
-rw-r--r-- | ansible/git-out.yml | 4 | ||||
-rw-r--r-- | peps/etc/xdg/lxsession/LXDE/autostart | 8 | ||||
l--------- | peps/home/user/.config/lxsession/LXDE/autostart | 1 | ||||
-rwxr-xr-x | peps/usr/local/bin/browser-launcher | 4 | ||||
-rw-r--r-- | peps/usr/share/playlist.html | 16 |
5 files changed, 31 insertions, 2 deletions
diff --git a/ansible/git-out.yml b/ansible/git-out.yml index f165e5c..2e5e2c4 100644 --- a/ansible/git-out.yml +++ b/ansible/git-out.yml @@ -27,7 +27,7 @@ notify: "debian" when: ansible_distribution_file_variety == "Debian" handlers: - - name: Copy essential binaries(tm) to {{ inventory_hostname }} + - name: Copy essential binaries(tm) copy: #src: "{{item.file}}" src: "files/git-out" @@ -37,7 +37,7 @@ group: root #loop: "{{vars.binfiles}}" listen: "redhat" - - name: Copy essential binaries(tm) to {{ inventory_hostname }} + - name: Copy essential binaries(tm) copy: #src: "{{item.file}}" src: "files/git-out" diff --git a/peps/etc/xdg/lxsession/LXDE/autostart b/peps/etc/xdg/lxsession/LXDE/autostart new file mode 100644 index 0000000..c79dfa1 --- /dev/null +++ b/peps/etc/xdg/lxsession/LXDE/autostart @@ -0,0 +1,8 @@ +@lxpanel --profile LXDE +@pcmanfm --desktop --profile LXDE +@xscreensaver -no-splash +@xset s off +@xset -dpms +@xset s noblank + +@/usr/local/bin/browser-launcher diff --git a/peps/home/user/.config/lxsession/LXDE/autostart b/peps/home/user/.config/lxsession/LXDE/autostart new file mode 120000 index 0000000..fcfe2cd --- /dev/null +++ b/peps/home/user/.config/lxsession/LXDE/autostart @@ -0,0 +1 @@ +/etc/xdg/lxsession/LXDE/autostart
\ No newline at end of file diff --git a/peps/usr/local/bin/browser-launcher b/peps/usr/local/bin/browser-launcher new file mode 100755 index 0000000..6b32d04 --- /dev/null +++ b/peps/usr/local/bin/browser-launcher @@ -0,0 +1,4 @@ +#!/usr/bin/env sh + +/usr/bin/chromium-browser --kiosk --disable-restore-session-state file:///usr/share/playlist.html \ + --autoplay-policy=no-user-gesture-required --no-gesture-required diff --git a/peps/usr/share/playlist.html b/peps/usr/share/playlist.html new file mode 100644 index 0000000..35aecac --- /dev/null +++ b/peps/usr/share/playlist.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> + <head> + <title>Ham wir noch welche?</title> + <style> + body,html {width:100%;height:100%;overflow:clip;background:#000000;margin:auto;text-align:center;} + </style> + </head> + <body> + <iframe width="1920" height="1080" + src="https://www.youtube.com/embed/videoseries?list=PLsgIseTfz4ulmgC_487SQ-TvRmPH0l1n7&enablejsapi=1&autoplay=1&loop=1" + title="Keine mehr da?" frameborder="0" + allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen> + </iframe> + </body> +</html> |