all repos — dotfiles @ 96a53b4e95bcb1113e57b8d2debca0814b6bfaf1

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]