aboutsummaryrefslogtreecommitdiff
path: root/decruft.py
blob: 6ad87aace10dc0f06c6b4495f145db5b8acdb0a8 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env python

# Remove Amazon webapp from the launcher
from gi.repository import Gio
settings = Gio.Settings.new('com.canonical.Unity.Launcher')
settings['favorites'] = [x for x in settings['favorites']
                         if x != 'application://ubuntu-amazon-default.desktop']