UNPKG

colson-tmux

Version:

Colson Tmux: Tmux + ZSH for Software Engineers!

9 lines (8 loc) 220 B
import { execSync } from 'child_process'; import os from 'os'; export const getHomeDirectory = () => { return os.homedir(); }; export const runCommand = (command) => { execSync(command, { stdio: 'inherit' }); };