Hacky way to have it running all the time :
I put this into a bash file to run the loop in the background at boot.
Just add the .sh in Preferences > Users & Group > Login Items
Then don't forget to chmod +x the bash file so it can be run.
--
#!/bin/bash
nohup bash -c 'while :; do /Users/starmina/Scripts/undot/undot; sleep 1; done' </dev/null >/dev/null 2>&1 &
I'd be glad to hear a of a better way to do it.
Hacky way to have it running all the time :
I put this into a bash file to run the loop in the background at boot.
Just add the .sh in Preferences > Users & Group > Login Items
Then don't forget to chmod +x the bash file so it can be run.
--
#!/bin/bash
nohup bash -c 'while :; do /Users/starmina/Scripts/undot/undot; sleep 1; done' </dev/null >/dev/null 2>&1 &
--
I'd be glad to hear a of a better way to do it.