# HG changeset patch # User Steve Losh # Date 1528647495 25200 # Node ID 8899300998c043af7c6266b294f754846d49defc # Parent 0bf13c58fc21e6aea3629e69560be5295daa999e linux diff -r 0bf13c58fc21 -r 8899300998c0 fish/functions/__ssh_agent_is_started.fish --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fish/functions/__ssh_agent_is_started.fish Sun Jun 10 09:18:15 2018 -0700 @@ -0,0 +1,1 @@ +/home/sjl/src/fish-ssh-agent/functions/__ssh_agent_is_started.fish \ No newline at end of file diff -r 0bf13c58fc21 -r 8899300998c0 fish/functions/__ssh_agent_start.fish --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fish/functions/__ssh_agent_start.fish Sun Jun 10 09:18:15 2018 -0700 @@ -0,0 +1,1 @@ +/home/sjl/src/fish-ssh-agent/functions/__ssh_agent_start.fish \ No newline at end of file diff -r 0bf13c58fc21 -r 8899300998c0 mutt/offlineimaplinux.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mutt/offlineimaplinux.py Sun Jun 10 09:18:15 2018 -0700 @@ -0,0 +1,9 @@ +#!/usr/bin/python + +import subprocess + +def get_keychain_pass(account=None): + command = "pass-work '%s'" % account + output = subprocess.check_output(command, shell=True, stderr=subprocess.STDOUT) + return output.splitlines()[0] +