all repos — dotfiles @ 779e9283e17e91cd7476996c9f5e83d79c3d5a3e

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]