24

Running Unity on fresh install of 14.04. I installed Unity Tweak Tool through the Software Center, and on initial launch it said:

The following schema is missing

com.canonical.notify.osd

In order to work properly, Unity Tweak Tool recommends you install the necessary packages.

So in the terminal I used

sudo apt-get install notify-osd

Then, when I tried to open Unity Tweak Tool again, I got the same message but instead of com.canonical.notify.osd, it's saying com.canonical.desktop.interface is missing. How do I get this to run?

pomsky
  • 68,507
Tony
  • 445

3 Answers3

40

I had the same issue, and I used the above solutions. Both were required to achieve a solution.

sudo apt-get install notify-osd
sudo apt-get install overlay-scrollbar

Now it works perfectly.

David Foerster
  • 36,264
  • 56
  • 94
  • 147
Solomon
  • 526
4

For what it's worth, I had this issue on 18.04 and it was solved only by running

sudo apt install notify-osd

I didn't need to install overlay-scrollbar.

leafmeal
  • 141
4

Used

sudo apt-get install overlay-scrollbar

Works now.

Tony
  • 445