From 1fba8315aa4335eee6a1d04b901abcb64c66ecfb Mon Sep 17 00:00:00 2001 From: Guy-Laurent Subri Date: Thu, 15 Nov 2018 11:05:42 +0100 Subject: [PATCH 1/3] Add precision for Gentoo dependencies in README --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 6733de2..2722571 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,11 @@ Videos are played randomly and diferent playlists are used based on time of day It is necessary to have the Phonon GStreamer backend for qt5, GStreamer ffmpeg Plugin and GStreamer Plugins Good - For Arch linux : `pacman -S gst-libav phonon-qt5-gstreamer gst-plugins-good` +- For Gentoo : these settings allowed me to make the theme work + + * `media-libs/gst-plugins-good` + * `USE="alsa gsteamer qml widgets" dev-qt/qtmultimedia` + * `USE="gstreamer" media-libs/phonon` Havent tryed for other distros... From 49bbc0a15ec0c8e6b3a4247415e9a85c76a09719 Mon Sep 17 00:00:00 2001 From: Guy-Laurent Subri Date: Thu, 15 Nov 2018 11:42:36 +0100 Subject: [PATCH 2/3] Add precision on how to download videos --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 2722571..c2bef00 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,14 @@ If you wish to play local videos files just use the following command to generat `find -maxdepth 1 -type f > ` +If you would like to use the same videos but offline, simply download them using your shell, e.g. : + +``` +while read -r link; do + wget "$link" +done < file_that_you_want_to_download +``` + ### Changing settings in `theme.conf.user` You can change a few settings in this file From 60e9163e91cfe682e675a180b0659f2b4da6cb61 Mon Sep 17 00:00:00 2001 From: eximus Date: Thu, 15 Nov 2018 11:57:27 +0000 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c2bef00..4d2056f 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ If you would like to use the same videos but offline, simply download them using ``` while read -r link; do wget "$link" -done < file_that_you_want_to_download +done < playlist_file ``` ### Changing settings in `theme.conf.user`