3

I recently updated to Ubuntu 18.04 LTS from Ubuntu 16.04 LTS. Since update, settings in ubuntu doesn't have proper selection highlighted.

See the screen shot, which selection is selected is not highlighted

Also menu items appears to be cramped

 look at File, Edit, etc

Output of gsettings get org.gnome.desktop.interface gtk-theme is 'Arc'.

pomsky
  • 67,112
  • 21
  • 233
  • 243
  • What is the output of the following command in Terminal: `gsettings get org.gnome.desktop.interface gtk-theme`? – pomsky Aug 19 '18 at 18:06
  • I tried running `gsettings get org.gnome.desktop.interface gtk-theme`, its shows only `'Arc'` – user8081342 Aug 22 '18 at 13:38

2 Answers2

2

After upgrading from 16.04 to 18.04 I had the same issue. I fixed it with the following:

sudo apt purge arc-theme
sudo apt install arc-theme

Note: be aware that this will completely remove arc-them including any customizations.

Kyle
  • 153
  • 2
  • 6
0

It seems the GTK+ theme you're currently using (Arc in your case) is broken (or unavailable) somehow.

Install (GNOME) Tweaks by running

sudo apt install gnome-tweaks

and use it to change your GTK+ theme (try the default ones: Ambiance and Radiance). See this for reference.

pomsky
  • 67,112
  • 21
  • 233
  • 243