 |
Some Ubuntu 9.10 Fixes
November 7, 2009
|
Replace NetworkManager Ethernet Icon
If "Human" icons are selected, likely in the case of someone upgrading, the NetworkManager Applet will have an ugly black icon representing an ethernet connection. Note that the new 9.10 theme is called "Humanity" which uses a much nicer and smaller connection icon. To use the latter in the place of the former:
sudo cp /usr/share/icons/Humanity/status/24/network-transmit-receive.svg /usr/share/icons/Human/scalable/devices/network-wired.svg
Disable Face Browser
Canonical have taken all of the fun out of gdmsetup, reducing it to just two options. All other customisation aside, I can't stand the "Face Browser" at the login screen. At least there's still a way to get rid if that:
sudo -u gdm gconftool-2 --set --type boolean /apps/gdm/simple-greeter/disable_user_list true
Another Bug in the GSD
The gnome-settings-daemon doesn't appear to be at all tested with remote logins. Currently there's another new bug, in a long line of bugs, that causes the daemon to crash when using the desktop remotely. This has been fixed, but the fix is currently sitting in the "proposed" queue. The solution in the meantime is to disable the xrandr plugin by running gconf-editor and unchecking the following:
/apps/gnome_settings_daemon/plugins/xrandr
Firefox 3.5 Font Rendering
It appears that Firefox 3.5 doesn't respect the font rendering set by the user in their system wide settings. I was really annoyed by this, and as a result managed to gather together the following information. This problem will only annoy those people who have selected settings that differ from those already set in the file respected by Firefox. This file is "/~.fonts.conf". My copy of this file had four settings within it: rgba, hinting, hintstyle and antialias. The settings hinting and antialias are boolean, whilst the other two have the following options:
rgba
unknown rgb bgr vrgb vgbr none
hintstyle
hintnone hintslight hintmedium hintfull
My file was set to: rgba none, hinting true, hintstyle hintfull and antialias true.
Within my gnome font rendering settings I select the standard "LCD" setting. This equates to: rgba rgb, hinting true, hintstyle hintslight and antialias true.
The contents of /~.fonts.conf then becomes:
<?xml version="1.0"?><!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font" >
<edit mode="assign" name="rgba" >
<const>rgb</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hinting" >
<bool>true</bool>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hintstyle" >
<const>hintslight</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="antialias" >
<bool>true</bool>
</edit>
</match>
</fontconfig>
|