all repos — dotfiles @ 9fb4a601b0e7b523a37c91ad6cfe4b65a5315a4e

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]