mirror of
https://github.com/Foltik/dotfiles
synced 2024-11-24 04:22:50 -05:00
7 lines
155 B
Python
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)
|