Manjaro Linux on a Western Digital USB hardrive with sleep disorder ;)

This is a problem that had me baffled for a long time. I had, very long back, during the very initial days of Manjaro Linux, installed it on my Western Digital(WD) My Passport HD. WD My Passport is a 160GB yellow colored cute little thing. Everything worked great. Manjaro is undoubtedly one of the best distros out there. After a few minutes of inactivity, the hard drive would go to sleep and the XFCE desktop environment would stop obeying my commands as if it had suddenly been gripped by dementia. Icons would vanish. The few that would remain would throw weird error messages. Rebooting was the only option. But I had no trust in such a system. I tried Fedora, openSUSE and some other distros too. Heck, I even tried FreeBSD. The results were no different.

I searched all the forums I could but did not receive an answer that could satisfy me. I downloaded the gnome-disk-utility and looked at the drive settings. I tried playing with all settings without any success.

Then I experienced an epiphany. I thought why would a drive go to sleep if there is constant activity? So an infinite loop with a periodic disk write activity would suffice to keep the drive awake for as long as I please!

Here is the script:

!/bin/bash
while true
do
echo -e "prevent hdd from sleeping script running…"
echo "do not let him sleep" >> /home/msiyer/Documents/KeepTheBloodyHDDAwake.log
echo -e "wrote into the /home/msiyer/Documents/KeepTheBloodyHDDAwake.log file"
echo "now sleeping for 30 seconds…"
sleep 30
done