In the last couple of months, sysutils/conky would occasionally hang and only the command
could stop it.
I had finally tracked down the problem to the following lines in my .conkyrc.
As the command
will probe all my disks, it may take more than 2 seconds to complete and so make conky hang. Changing the above lines to
solved my problem. Now conky no longer hangs even if I put a cdrom into my drive.
$ "killall -9 conky"
could stop it.
I had finally tracked down the problem to the following lines in my .conkyrc.
Code:
update_interval 2.0
${execi 180 zfs list}
As the command
$ zfs list
will probe all my disks, it may take more than 2 seconds to complete and so make conky hang. Changing the above lines to
Code:
update_interval 2.0
${texeci 180 zfs list}
solved my problem. Now conky no longer hangs even if I put a cdrom into my drive.