On 08/23/2006 04:23 PM, Justin Piszcz wrote:
Here it is, the secret sauce! XRESOURCES="$HOME/.Xresources" echo "Xft.dpi: 96.000000" > "$XRESOURCES" echo "Xft.hinting: 1" >> "$XRESOURCES" echo "Xft.hintstyle: hintmedium" >> "$XRESOURCES" xrdb -merge "$XRESOURCES" No more gnome stuff for me! Justin.
Or you could read from standard input: echo ' Xft.dpi: 96.000000 Xft.hinting: 1 Xft.hintstyle: hintmedium ' | xrdb -merge I'm glad it worked out.