mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-27 20:41:37 +02:00
9 lines
184 B
Bash
9 lines
184 B
Bash
#!/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
|