Upgraded to 11.04 and now most of the UI is gray and boxy
Solution 1:
Using the answer to the question @Uri Herrera linked in his comment, I couldn't fix the issue.
However, one of the answers did point to a bug that tracks this issue, and I found a comment on the bug that solved it for me.
Here are the key bits:
First, create a bash script (I named it /etc/xdg/autostart/gnomesettingsdaemonfix.sh
)
#!/bin/bash
pid=$(pgrep gnome-settings-)
while [ -n "$pid" ];
do
pid=$(pgrep gnome-settings-)
sleep 0
done
exit 0
Make sure it is executable (run chmod +x
).
Then edit /etc/xdg/autostart/gnome-settings-daemon.desktop
Change the Exec
line to:
Exec=bash -c 'bash /etc/xdg/autostart/gnomesettingsdaemonfix.sh; /usr/lib/gnome-settings-daemon/gnome-settings-daemon
That seems to have fixed it so far for me.