diff options
author | luxagraf <sng@luxagraf.net> | 2020-02-16 13:23:56 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-02-16 13:23:56 -0500 |
commit | cd507c92f617d4a8a3f7bb0b43e425491ef7184d (patch) | |
tree | 42144ef0f35b91e7955f570c5ecc4bcec3c4d780 /.mutt/offlineimap.py |
initial commit of dotfiles
Diffstat (limited to '.mutt/offlineimap.py')
-rw-r--r-- | .mutt/offlineimap.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.mutt/offlineimap.py b/.mutt/offlineimap.py new file mode 100644 index 0000000..f84b6bc --- /dev/null +++ b/.mutt/offlineimap.py @@ -0,0 +1,5 @@ +#! /usr/bin/env python2 +from subprocess import check_output + +def get_password(account): + return check_output("pass " + account, shell=True).splitlines()[0] |