exec.py (407B)
1 import os 2 import subprocess 3 4 from talon import Module 5 6 mod = Module() 7 8 9 @mod.action_class 10 class Actions: 11 def system_command(cmd: str): 12 """execute a command on the system""" 13 os.system('. ~/.dotfiles/shell/env; . ~/.dotfiles/shell/paths;' + cmd) 14 15 def system_command_nb(cmd: str): 16 """execute a command on the system without blocking""" 17 subprocess.Popen(cmd, shell=True)