1
0
mirror of https://github.com/captn3m0/Scripts.git synced 2024-07-20 10:23:50 +00:00
scripts/gkeyring
Abhay Rana ffbacbab72 Commits a working script that uses gnome-keyring to mount my encrypted /home partition on my external hdd.
- Gets passphrase using the gkeyring command
- Mounts the pre requisites first
- Uses fnek_sig from keyring as well
2014-06-06 13:21:12 +05:30

11 lines
300 B
Python
Executable File

#!/usr/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'gkeyring==0.3','console_scripts','gkeyring'
__requires__ = 'gkeyring==0.3'
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.exit(
load_entry_point('gkeyring==0.3', 'console_scripts', 'gkeyring')()
)