| 
  | exec_command(self,
        command,
        getOutput=True)
   | source code |  Execute a shell command Usage: system.exec_command(command, getOutput=True) Set getOutput to False if the command does not exit and return 
  immediately. Otherwise AutoKey will not respond to any 
  hotkeys/abbreviations etc until the process started by the command 
  exits. 
    Parameters:
        command- command to be executed (including any arguments) - e.g. "ls 
          -l"getOutput- whether to capture the (stdout) output of the commandRaises:
        subprocess.CalledProcessError- if the command returns a non-zero exit code |