I'm experimenting with the doityourself desklet, and
I find that if I try to show some text with any spanish
character (i.e: ?, ?, ?, etc), it doesn't show up. It
appears blank from that character.
Any suggestions?
Guillermo,
Try using the
iconv command to
convert text between encodings. In my case I use the
iso-8859-1 default encoding, and
something like this solves the problem:
#!/bin/bash
echo "?Buenos d?as!" | iconv -f iso-8859-1 -t utf-8