I've written a simple-minded "take a break" reminder which just opens a PDF notice. This works fine, but I wish I could open the PDF file in full screen mode from the command line. Does anyone know how to do that? Perhaps some osascript magic?
#!/bin/sh
B=$HOME/Documents/break.pdf
D=3000
while true
do
sleep $D
open $B
done