Hi Victor!
Congratulations for your great work.
I added a "yad mode" to my library EasyBashGUI (
https://sites.google.com/site/easybashgui)
Beside EBG, I work on an other open source project, related to a karaoke player.
It is finished, but it misses a better karaoke window (now it uses xterm).
I'm working on yad to add such feature:
E.g.:
...
echo "...Singing the song..." | yad --back=grey --fontname="60" --wrap --justify=center --margins=10 --tail --width 800 --height 600 --center --undecorated --text-info --button=Close:1 --button=Fullscreen:9
return_value="${?}"
if [ ${return_value} -eq 1 ]; then
...
...
My problem is that I need to color some words with *two* colors (words sung, and words to sing), and reload phrase with color that "moves" from left to right.
Is it possible?
Thanks in advance