Mercurial > hg > config
diff python/window_path.py @ 129:83bc1e6e5b54
part of a dream realized
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 18 Mar 2011 11:33:56 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python/window_path.py Fri Mar 18 11:33:56 2011 -0700 @@ -0,0 +1,17 @@ +#!/usr/bin/env python + +import os +import subprocess +import sys +import window_title + +def main(filename): + title = window_title.active_window_title() + path = os.path.expanduser(title) + if not os.path.exists(path): + return + path = os.path.abspath(path) + return os.path.join(path, filename) + +if __name__ == '__main__': + print main(sys.stdin.read().strip())