diff --git a/hello-world/.gitignore b/hello-world/.gitignore deleted file mode 100644 index c776bdf..0000000 --- a/hello-world/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.deb \ No newline at end of file diff --git a/hello-world/media/hello-world-image-1.jpg b/hello-world/media/hello-world-image-1.jpg deleted file mode 100644 index b52f1a1..0000000 Binary files a/hello-world/media/hello-world-image-1.jpg and /dev/null differ diff --git a/hello-world/media/hello-world-image-2.jpg b/hello-world/media/hello-world-image-2.jpg deleted file mode 100644 index 478d052..0000000 Binary files a/hello-world/media/hello-world-image-2.jpg and /dev/null differ diff --git a/hello-world/media/hello-world-image-3.jpg b/hello-world/media/hello-world-image-3.jpg deleted file mode 100644 index 4107fe3..0000000 Binary files a/hello-world/media/hello-world-image-3.jpg and /dev/null differ diff --git a/hello-world/media/hello-world-thumbnail.jpg b/hello-world/media/hello-world-thumbnail.jpg deleted file mode 100644 index bc2d2ab..0000000 Binary files a/hello-world/media/hello-world-thumbnail.jpg and /dev/null differ diff --git a/hello-world/package/DEBIAN/control b/hello-world/package/DEBIAN/control deleted file mode 100644 index bbc1a86..0000000 --- a/hello-world/package/DEBIAN/control +++ /dev/null @@ -1,21 +0,0 @@ -Package: hello-world -Version: 1.0.0 -Maintainer: Tooloop Multimedia -Homepage: https://www.tooloop.de -Bugs: https://www.github.com/Tooloop/Tooloop-Packages -Section: tooloop/presentation -Architecture: amd64 -Name: Hello World -Thumbnail: hello-world-thumbnail.jpg -Media: hello-world-image-1.jpg, hello-world-image-2.jpg, hello-world-image-3.jpg -Description: Example package skeleton - ### Just an example - . - This package is meant as a bare example to get you started packaging your own - presentation. Use it as a skeleton. For more details, please see the - [README](https://github.com/Tooloop/Tooloop-Packages). - . - ### Credits - . - Photos by [NASA](https://unsplash.com/@nasa?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) - on [Unsplash](https://unsplash.com/@nasa?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) diff --git a/hello-world/package/DEBIAN/postinst b/hello-world/package/DEBIAN/postinst deleted file mode 100755 index 81a68ce..0000000 --- a/hello-world/package/DEBIAN/postinst +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -set -e - -# Do something after package installation - -exit 0 \ No newline at end of file diff --git a/hello-world/package/DEBIAN/postrm b/hello-world/package/DEBIAN/postrm deleted file mode 100755 index b95adeb..0000000 --- a/hello-world/package/DEBIAN/postrm +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -set -e - -# Do something after package removal - -exit 0 \ No newline at end of file diff --git a/hello-world/package/DEBIAN/preinst b/hello-world/package/DEBIAN/preinst deleted file mode 100755 index 4cded55..0000000 --- a/hello-world/package/DEBIAN/preinst +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -set -e - -# Do something before package installation - -exit 0 \ No newline at end of file diff --git a/hello-world/package/DEBIAN/prerm b/hello-world/package/DEBIAN/prerm deleted file mode 100755 index 3ea056f..0000000 --- a/hello-world/package/DEBIAN/prerm +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -set -e - -# Do something before package removal - -exit 0 \ No newline at end of file diff --git a/hello-world/package/assets/presentation/start-presentation.sh b/hello-world/package/assets/presentation/start-presentation.sh deleted file mode 100644 index a214a6b..0000000 --- a/hello-world/package/assets/presentation/start-presentation.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -# here comes everything, you want Tooloop to run -# don't forget to put an "&" at the end of each line, e.g. xeyes & - -xeyes & - -exit 0 diff --git a/hello-world/package/assets/presentation/stop-presentation.sh b/hello-world/package/assets/presentation/stop-presentation.sh deleted file mode 100644 index b4f7c29..0000000 --- a/hello-world/package/assets/presentation/stop-presentation.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -# here comes everything, you need to stop the running presentation -# basically kill or stop everything you started in `start-presentation.sh` - -kill $(pidof xeyes) - -exit 0