Good day,
I need my miner to run at 700 MHz during the night and 500 MHz dring the day.
Is it possible to make a time scedule like this?
If not, may be is a good idea to be implemented in the next version.
I have a cheap energy during the night I believe a lo of miners will use it in this way.
As I posted this earlier, crontab is your friend ...
Add 2 cgminer.conf with your desired configs
Example:
/root/cgminer.conf.500
/root/cgminer.conf.700
Then edit crontab and set it to copy them before reload cgminer.
crontab -e
0 7 * * * cp /root/cgminer.conf.500 /etc/cgminer.conf && /etc/init.d/cgminer reload
0 23 * * * cp /root/cgminer.conf.700 /etc/cgminer.conf && /etc/init.d/cgminer reload