diff --git a/usr/share/linuxmint/mintMenu/plugins/applications.py b/usr/share/linuxmint/mintMenu/plugins/applications.py index 1078734..653fbe5 100755 --- a/usr/share/linuxmint/mintMenu/plugins/applications.py +++ b/usr/share/linuxmint/mintMenu/plugins/applications.py @@ -834,7 +834,7 @@ class pluginclass( object ): else: shownList.append(i) showns = True - if (not showns and os.path.exists("/usr/lib/linuxmint/mintInstall/icon.svg")): + if (not showns and os.path.exists("/usr/share/linuxmint/mintInstall/icon.svg")): if len(text) >= 3: if self.current_suggestion is not None and self.current_suggestion in text: # We're restricting our search... @@ -1184,7 +1184,7 @@ class pluginclass( object ): try: # Determine where the Desktop folder is (could be localized) import sys, commands - sys.path.append('/usr/lib/linuxmint/common') + sys.path.append('/usr/share/linuxmint/common') from configobj import ConfigObj config = ConfigObj(home + "/.config/user-dirs.dirs") desktopDir = home + "/Desktop" diff --git a/usr/share/linuxmint/mintMenu/plugins/easybuttons.py b/usr/share/linuxmint/mintMenu/plugins/easybuttons.py index fe16e6e..2040fd9 100755 --- a/usr/share/linuxmint/mintMenu/plugins/easybuttons.py +++ b/usr/share/linuxmint/mintMenu/plugins/easybuttons.py @@ -387,7 +387,7 @@ class ApplicationLauncher( easyButton ): Execute(self.appExec, self.appPath) def uninstall (self, *args ): - Execute("gksu /usr/lib/linuxmint/common/mint-remove-application.py " + self.desktopFile) + Execute("gksu /usr/share/linuxmint/common/mint-remove-application.py " + self.desktopFile) # IconTheme changed, setup new icons for button and drag 'n drop def iconChanged( self ): diff --git a/usr/share/linuxmint/mintMenu/plugins/places.py b/usr/share/linuxmint/mintMenu/plugins/places.py index e49e696..aaced7e 100755 --- a/usr/share/linuxmint/mintMenu/plugins/places.py +++ b/usr/share/linuxmint/mintMenu/plugins/places.py @@ -177,7 +177,7 @@ class pluginclass( object ): desktopDir = home + "/Desktop" try: import sys - sys.path.append('/usr/lib/linuxmint/common') + sys.path.append('/usr/share/linuxmint/common') from configobj import ConfigObj config = ConfigObj(home + "/.config/user-dirs.dirs") tmpdesktopDir = config['XDG_DESKTOP_DIR'] diff --git a/usr/share/linuxmint/mintMenu/plugins/system_management.py b/usr/share/linuxmint/mintMenu/plugins/system_management.py index 617a799..c503a37 100755 --- a/usr/share/linuxmint/mintMenu/plugins/system_management.py +++ b/usr/share/linuxmint/mintMenu/plugins/system_management.py @@ -132,8 +132,8 @@ class pluginclass( object ): def do_standard_items( self ): if ( self.showSoftwareManager == True ): - if os.path.exists("/usr/lib/linuxmint/mintInstall/icon.svg"): - Button1 = easyButton( "/usr/lib/linuxmint/mintInstall/icon.svg", self.iconsize, [_("Software Manager")], -1, -1 ) + if os.path.exists("/usr/share/linuxmint/mintInstall/icon.svg"): + Button1 = easyButton( "/usr/share/linuxmint/mintInstall/icon.svg", self.iconsize, [_("Software Manager")], -1, -1 ) Button1.connect( "clicked", self.ButtonClicked, "gksu mintinstall" ) Button1.show() self.systemBtnHolder.pack_start( Button1, False, False, 0)