Conky ignores Tabs #1420
hollysheep
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With the application "fritzconnection" (written in Python) i can read all hosts connected to my router (FritzBox 7490). This is the line in the conky config file:
${execi 5 python3 python.py}
The output looks like
As you can see there is a normal space between the IP and the hosts name. When the IP is 192.168.10.101 the output is
As you can see the h of host3 is father to the right then the others. When i replace the space with a tab ("\t") the output looks terrible:
It seems the tab is completely ignored by conky.
What i want is the first but also with longer IPs.
EDIT
This is the python script, perhaps the problem is here?
from fritzconnection.lib.fritzhosts import FritzHosts
I found the script in the web. I don't know what "{ip:<16}" is doing.
Beta Was this translation helpful? Give feedback.
All reactions