It may actually be a very tiny error in your conky.conf file. I was plagued by this as well and went into the convert.lua (in 15.10, it's at /usr/share/doc/conky-std) to see what was going on. The line above 138 where the configuration file was split in two caught my eye, because the regular expression looked like so:
^(.-)TEXT\n(.*)$ And sure enough, when checking my configuration file, there were extra spaces after the word TEXT but before the line break; deleting those allowed conky to process my configuraton file and properly start. (To be pedantic, the regular expression could be changed to the following to make my old configuration file work: ^(.-)TEXT *\n(.*)$ But it'd be just easier to fix the config file. :) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1509592 Title: Error using conky.conf To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/conky/+bug/1509592/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
