mirror of
https://codeberg.org/hyperreal/dotfiles
synced 2024-11-25 11:53:43 +01:00
7 lines
154 B
Python
7 lines
154 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from subprocess import check_output
|
||
|
|
||
|
def get_pass():
|
||
|
return check_output("pass mail/proton-mail", shell=True).splitlines()[0]
|