mirror of
https://github.com/Foltik/dotfiles
synced 2024-11-24 04:22:50 -05:00
17 lines
234 B
Bash
Executable File
17 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -c /dev/video0 ]]; then
|
|
if [[ "$(fuser /dev/video0)" != "" ]]; then
|
|
echo "rec"
|
|
echo "rec"
|
|
echo ""
|
|
else
|
|
echo "on"
|
|
echo "on"
|
|
echo ""
|
|
else
|
|
echo "off"
|
|
echo "off"
|
|
echo ""
|
|
fi
|
|
fi |