You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
moonstone/ubuntu_smoother/utils/processor.py

18 lines
410 B
Python

import subprocess
class Processor:
def __init__(self, config: 'Config'):
self.__config = config
def run(self):
proc = subprocess.run(
["pkexec", "ubuntu-smoother-processor", self.__config.get_str()],
check=True
)
if proc.returncode != 0:
return False, "Error executing the Ubuntu Smoother Processor"
return True