small updates
This commit is contained in:
parent
d1a587b026
commit
fad7b6a31d
|
@ -187,7 +187,7 @@ class Main(Context):
|
||||||
DEVNULL = open(os.devnull, 'w')
|
DEVNULL = open(os.devnull, 'w')
|
||||||
command = option.split("%")[0]
|
command = option.split("%")[0]
|
||||||
self.logger.debug(command)
|
self.logger.debug(command)
|
||||||
subprocess.Popen(command.split(), start_new_session=True, stdout=DEVNULL, stderr=DEVNULL)
|
subprocess.Popen(command.split(), cwd=os.getenv("HOME"), start_new_session=True, stdout=DEVNULL, stderr=DEVNULL)
|
||||||
|
|
||||||
|
|
||||||
def clear(self):
|
def clear(self):
|
||||||
|
|
|
@ -15,9 +15,9 @@ from .mixins import StylesMixin
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
GROUPS = [ "Favorites", "Accessories", "Multimedia", "Graphics", "Office",
|
GROUPS = [ "Search...", "Favorites", "Accessories", "Multimedia", "Graphics", "Office",
|
||||||
"Development", "Internet", "Settings", "System", "Game", "Wine",
|
"Development", "Internet", "Settings", "System", "Game", "Wine",
|
||||||
"Other", "Search...", "[ Exit ]"
|
"Other", "[ Exit ]"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue