Added html pipe to firefox from mutt in a hacky fashion
[dotfiles.git] / .mutt / offlineimap.py
1 #!/bin/env python
2 # -*- coding: utf-8 -*-
3
4 import subprocess
5
6 def mailpasswd():
7 args = '/home/mart/.config/i3/gpass.sh mart@martlubbers.net'
8 try:
9 return subprocess.check_output(args, shell='/bin/bash').strip()
10 except subprocess.CalledProcessError:
11 return ""