mirror of
https://gitlab.com/mlunax/dotfiles.git
synced 2025-04-19 08:45:36 +00:00
10 lines
No EOL
115 B
Bash
10 lines
No EOL
115 B
Bash
#!/bin/bash
|
|
ctrl_c() {
|
|
exit;
|
|
}
|
|
for (( ; ; ))
|
|
do
|
|
trap ctrl_c INT
|
|
timeout --foreground 150 mon2cam -m 0
|
|
sleep 1
|
|
done |