1
0
mirror of https://github.com/Foltik/dotfiles synced 2025-01-10 01:29:11 -05:00
dotfiles/lib/fish.py

7 lines
155 B
Python

import lib.proc as proc
def fish(path):
cmd = ['fish', str(path.expanduser())]
subproc = proc.exec(cmd)
return proc.communicate(subproc, cmd)