hello world package

This commit is contained in:
2022-05-12 18:14:25 +02:00
parent 9e7c0b72d4
commit 0c33559a9b
12 changed files with 62 additions and 0 deletions
@@ -0,0 +1,8 @@
#!/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
@@ -0,0 +1,8 @@
#!/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