move files to /usr/share

This commit is contained in:
djcj 2014-08-06 04:50:51 +02:00
parent 4ab8ead0dd
commit ab5f88b430
4 changed files with 6 additions and 6 deletions

View File

@ -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"

View File

@ -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 ):

View File

@ -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']

View File

@ -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)