-
|
Hello: I run my WS on Linux Devuan Daedalus: The presently installed Conky is the latest one available in the Devuan repository: The desktop is XFCE 4.18. If I run conky from the command line, I do get debug printout: But I need to do so as it starts up when I log in because the issue I am having is related to a VM running I'd appreciate some input on this. Best, PCL |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Conky uses stderr for logging because stdout is used in text mode (as opposed to X11/Wayland modes). So you'll need to redirect stderr to a file with |
Beta Was this translation helpful? Give feedback.
-
|
Hello:
Right ... PCL |
Beta Was this translation helpful? Give feedback.
Conky uses stderr for logging because stdout is used in text mode (as opposed to X11/Wayland modes). So you'll need to redirect stderr to a file with
/usr/bin/conky -DD 2> conky_debug.log; I suggest using-DDto get even more verbose messages.