As the title says, are their any themes which display text from tomboy,Xpad or gedit? or is their any file where I can edit to add text?
2 Answers
conky
displays whatever you have in your $HOME/.conkyrc
file. You can add arbirtary text there. Alternatively, you can have it import and display the contents of another file. For example, if you have the text in question in ~/foo.txt
, you can add this line to your .conkyrc
:
${exec cat ~/foo.txt}
That will run cat ~/foo.txt
and will display the contents of the file in your conky
. If the contents of the file can change and you want the changes to be updated in conky
, use this instead:
${execi 3 cat ~/foo.txt}
That will run cat ~/foo.txt
every 3 seconds, updating the text displayed by conky
.

- 100,812
Conky is able to display everything you can get as standard output from any program. So, I made my own command-line note manager in Python (you can download it from here).
Once installed, pyclinote can manage your note as simple text. In order to add and delete notes you can use the gui, by launching this command from the directory you have chosen for pyclinote:
python pyclinote.py -g
Now, to show your notes on conky, you just have to add the following command on your conky.conf:
${execi 2 (cd /your_path/pyclinote-1.0 && python pyclinote.py -s)}
this will execute every 2 seconds the 'python pyclinote.py -s' command that will return your notes list.
In order to make the management of notes more easy, I added a keyboard shortcut to python pyclinote.py -g, so with a simple key combo I can easily add or delete my notes.
Hope this will help you!

- 101
.conkyrc
is the defaultconky
config file, your themes might be using something else. How are you launchingconky
? – terdon May 01 '14 at 11:09~/.conkyrc
but I don't know which file your themes have chosen. You should be able to figure it out through conky manager (I've never used that, I just write the themes manually). Once you have found the file, add the directives from my answer, after#TEXT
, lines above#TEXT
are settings and not displayed. – terdon May 01 '14 at 11:36