all repos — archive/dotfiles @ 2ccb787b935ed50590cb6889f8daf0b1a87d07b2

Superseded by nixfiles

offlineimap/.offlineimap.py (view raw)

1
2
3
4
5
#! /usr/bin/env python2
from subprocess import check_output

def get_pass(account):
    return check_output("pass " + account, shell=True).splitlines()[0]