Rename hello world fixing #4

This commit is contained in:
2023-06-23 14:59:37 +02:00
parent e59456925f
commit 5f8f21bf33
12 changed files with 0 additions and 62 deletions
-1
View File
@@ -1 +0,0 @@
*.deb
Binary file not shown.

Before

Width:  |  Height:  |  Size: 862 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

-21
View File
@@ -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)
-6
View File
@@ -1,6 +0,0 @@
#!/bin/bash
set -e
# Do something after package installation
exit 0
-6
View File
@@ -1,6 +0,0 @@
#!/bin/bash
set -e
# Do something after package removal
exit 0
-6
View File
@@ -1,6 +0,0 @@
#!/bin/bash
set -e
# Do something before package installation
exit 0
-6
View File
@@ -1,6 +0,0 @@
#!/bin/bash
set -e
# Do something before package removal
exit 0
@@ -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
@@ -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