view python/window_path.py @ 341:4387fa22807f

what a fuck; http://askubuntu.com/questions/20590/set-default-browser-to-open-browser
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 22 Jun 2013 09:54:06 -0700
parents 83bc1e6e5b54
children
line wrap: on
line source

#!/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())