diff options
author | hut <hut@lepus.uberspace.de> | 2015-11-14 03:50:14 +0100 |
---|---|---|
committer | hut <hut@lepus.uberspace.de> | 2015-11-14 03:50:14 +0100 |
commit | 84247cffc5ecc3d20bb332718d4d9543be74e869 (patch) | |
tree | 2614f86d36e56e081db88ed61bb05d99885efc47 | |
parent | 18f25ff7e089476aefaddbeb15aaaec9ff019154 (diff) | |
parent | 6e8f001cd21558fcadc5e15cbb0b1155b0dab9c0 (diff) | |
download | ranger-84247cffc5ecc3d20bb332718d4d9543be74e869.tar.gz |
Merge branch 'vifon/pmount' of https://github.com/Vifon/ranger
-rw-r--r-- | examples/plugin_pmount.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/examples/plugin_pmount.py b/examples/plugin_pmount.py new file mode 100644 index 00000000..61ee0dbd --- /dev/null +++ b/examples/plugin_pmount.py @@ -0,0 +1,30 @@ +# Tested with ranger 1.7.2 +# +# This plugin creates a bunch of keybindings used to mount and unmount +# the devices using pmount(1). +# +# alt+m <letter> <digit>: mount /dev/sd<letter><digit> +# alt+m <uppercase letter> : mount /dev/sd<letter> +# alt+shift+m <letter> <digit>: unmount /dev/sd<letter><digit> +# alt+shift+m <uppercase letter> : unmount /dev/sd<letter> +# alt+shift+n : list the devices + +import ranger.api + +MOUNT_KEY = '<alt>m' +UMOUNT_KEY = '<alt>M' +LIST_MOUNTS_KEY = '<alt>N' + +old_hook_init = ranger.api.hook_init +def hook_init(fm): + try: + fm.execute_console("map {key} shell -p lsblk".format(key=LIST_MOUNTS_KEY)) + for disk in "abcdefgh": + fm.execute_console("map {key}{0} chain shell pmount sd{1}; cd /media/sd{1}".format(disk.upper(), disk, key=MOUNT_KEY)) + fm.execute_console("map {key}{0} chain cd; chain shell pumount sd{1}".format(disk.upper(), disk, key=UMOUNT_KEY)) + for part in "123456789": + fm.execute_console("map {key}{0}{1} chain shell pmount sd{0}{1}; cd /media/sd{0}{1}".format(disk, part, key=MOUNT_KEY)) + fm.execute_console("map {key}{0}{1} chain cd; shell pumount sd{0}{1}".format(disk, part, key=UMOUNT_KEY)) + finally: + return old_hook_init(fm) +ranger.api.hook_init = hook_init |