Estou tentando executar o script bash abaixo com o cron, que recebe giblib error: Can't open X display. It *is* running, yeah?
error.
Script Bash:
#!/bin/sh
export DISPLAY=:0
fnm='/tmp/'$(date +%m.%d.%y_%H.%M.%S)'.png'
echo $fnm
scrot -q 10 $fnm
scp $fnm [email protected]:/tmp
Crontab:
* * * * * admin bash /autoscreenshot.sh >> /tmp/error.txt 2>> /tmp/error2.txt
Erro:
# cat /tmp/error2.txt
giblib error: Can't open X display. It *is* running, yeah?
Alguém tem ideia sobre esse erro?