This commit is contained in:
2026-03-02 08:51:14 +00:00
parent f424b9acc0
commit 21a4b1ced6
5 changed files with 89 additions and 0 deletions

13
camera.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
cheese >/dev/null 2>&1 & disown
read -p "Funktioniert Kamera? Cheese öffnet sich - (y/n): " answer
if [[ "$answer" == [Yy] ]]; then
return 0
elif [[ "$answer" == [Nn] ]]; then
return 1
else
return 1
fi