mirror of
https://github.com/SL-RU/ranger_udisk_menu.git
synced 2024-11-10 12:34:07 +01:00
21 lines
531 B
Python
21 lines
531 B
Python
#!/usr/bin/python3
|
|
# coding: utf-8
|
|
# License: The MIT License
|
|
# Author: Alexander Lutsai <sl_ru@live.com>
|
|
# Year: 2021
|
|
# Description: This launches script that draws menu to choose, mount and unmount drives from ranger file manager
|
|
|
|
from ranger.api.commands import Command
|
|
|
|
|
|
class mount(Command):
|
|
""":mount
|
|
|
|
Show menu to mount and unmount
|
|
"""
|
|
|
|
def execute(self):
|
|
""" Show menu to mount and unmount """
|
|
self.fm.execute_console(
|
|
"shell python3 ~/.config/ranger/ranger_udisk_menu/menu.py")
|