/var/lib/prey/modules/webcam/config is in prey 0.6.2-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/bash
####################################################################
# Prey Webcam Module Config File - by Tomas Pollak
# URL : http://preyproject.com
# License: GPLv3
####################################################################
webcam__picture="$tmpdir/prey-picture.jpg"
webcam__video="$tmpdir/prey-video.mov"
# should we capture video
webcam__capture_video='n'
# how much time should we capture video (in seconds)
webcam__video_capture_time='30'
# frames per second (for streamer in linux)
webcam__frames_per_second='12'
|