all repos — archive/dotfiles @ f21ac9298f04a588610270c6207a31709cbc96f2

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]