1
0
mirror of https://github.com/Foltik/dotfiles synced 2024-11-27 21:19:51 -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)