[Users] Missing spell checker [Claws Mail, enchant, aspell, CentOS 6.5]

Victoria S. 1 at VictoriasJourney.com
Sun Jul 13 19:35:45 CEST 2014


Update:

While the following Claws mail action worked well on my CentOS 6.5 Final-based computer at work,

| T=`mktemp $HOME/.tmpXXX`; cat - > $T ; gnome-terminal --geometry 150x55+25+25 -x aspell -c $T;  printf ' ' >> $T; cat $T; rm $T |

... at home (Ubuntu 14.04 LTS) that action (particularly the gnome-terminal-associated bit) was problematic; e.g., throwing the following error (a known GTK module bug?):

    "GLib-GIO-CRITICAL **: g_settings_get: the format string may not contain '&' (key 'monospace-font-name' from schema 'org.gnome.desktop.interface') ..."

However, in Ubuntu 14.04 LTS , this worked more reliably:

| T=`mktemp /home/victoria/.tmpXXX`; cat - > $T; xterm -e  aspell -c $T;  printf ' ' >> $T; cat $T; rm $T |

Victoria  :-)



More information about the Users mailing list