small updates

This commit is contained in:
2020-11-18 19:24:04 -06:00
parent d1a587b026
commit fad7b6a31d
2 changed files with 3 additions and 3 deletions

View File

@@ -187,7 +187,7 @@ class Main(Context):
DEVNULL = open(os.devnull, 'w')
command = option.split("%")[0]
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):