如何为Nautilus脚本分配键盘快捷键?


10

我已经设置了Nautilus脚本。我将脚本放进去/home/sumeet/.local/share/nautilus/scripts,它确实出现在右键菜单中。并按预期工作。我只想为脚本分配一个快捷方式。


如何为Nautilus脚本创建键盘快捷键?

上面问题中给出的答案针对的是特定版本,并且已经完全过时了,除了这个与该主题相关的问题,我什么都找不到。


可以完成,但是您也需要编辑nautilus脚本。您可能的情况吗?(我怀疑是:))。我和Bothe Serg在这里都做了类似的事情: askubuntu.com/questions/886642/…。该解决方案可以在此处应用,但是它需要目标脚本来接收文件或目录作为参数。
雅各布•弗利姆'17

@JacobVlijm这是相同的脚本(您知道哪个脚本)
Sumeet Deshmukh

1
AHAAA,那么答案很简单。我希望我可以今天将其发布。
雅各布·弗利姆

@JacobVlijm感激它。
Sumeet Deshmukh

嗨,Sumeet,我保证我将丢失并找到的修复程序应用于所有出现的脚本,包括我刚刚发布的脚本。如果我可以再次呼吸,请立即进行:)
Jacob Vlijm '17

Answers:


6

怎么做

右键单击Nautilus脚本的文件或文件夹时,所选文件将作为参数传递给脚本。在大多数情况下是这样的:

import os
subject = os.getenv("NAUTILUS_SCRIPT_CURRENT_URI")

...以最简单的形式使用python3。

如果将其替换为:

import pyperclip

subprocess.call(["xdotool", "key", "Control_L+c"])
subject = pyperclip.paste()

...当前选择的文件在脚本中用作参数

你需要什么

要使用此解决方案(16.04及更高版本),您需要同时安装xdotoolpython3-pyperclip

sudo apt-get install python3-pyperclip xdotool

注释中提到的完整脚本

然后变成:

#!/usr/bin/env python3
import subprocess
import os
import sys
import pyperclip

# --- set the list of valid extensions below (lowercase)
# --- use quotes, *don't* include the dot!
ext = ["jpg", "jpeg", "png", "gif", "icns", "ico"]
# --- set the list of preferred filenames
# --- use quotes
specs = ["folder.png", "cover.png", "monkey.png"]
# ---

# retrieve the path of the targeted folder
subprocess.call(["xdotool", "key", "Control_L+c"])
dr = pyperclip.paste()

for root, dirs, files in os.walk(dr):
    for directory in dirs:
        folder = os.path.join(root, directory)
        fls = os.listdir(folder)
        try:
            first = [p for p in fls if p in specs]
            first = first[0] if first else min(
                p for p in fls if p.split(".")[-1].lower() in ext
                )
        except ValueError:
            pass
        else:
            subprocess.Popen([
                "gvfs-set-attribute", "-t", "string",
                os.path.abspath(folder), "metadata::custom-icon",
                "file://"+os.path.abspath(os.path.join(folder, first))
                ])

添加这一个快捷键,可以将图标的所有目录选定一个。

将其添加到快捷键(!)

添加快捷键,运行(使用-的脚本)xdotool命令来按下另一个组合键可能很棘手。为防止两个键组合互相干扰,请使用:

/bin/bash -c "sleep 1 && python3 /path/to/script.py"

说明

Ctrl+ C而选择了一个文件被按下时,路径的文件被复制到剪贴板。我们使用以下命令模拟按键:

subprocess.call(["xdotool", "key", "Control_L+c"])

pythonpyperclip模块仅生成路径,file://在使用时pyperclip.paste()将其删除(这不会从字面上粘贴,而是使路径在脚本内可用)。


1

如果目标是选择文件并执行操作,则可以仅使用带有xdotool和的shell脚本来执行xclip。因此,首先安装它们:

sudo apt-get install xdotool xclip

然后使用循环内的动作创建以下脚本:

#!/bin/bash
file=$(mktemp)

xdotool key "Control_L+c"
variable="$( xclip -out -selection clipboard)"
variable="$( echo -e "$variable" | \
            awk 'BEGIN { FS = "\n" } { printf "\"%s\" ", $1 }' | \
            sed -e s#\"\"## | \
            sed 's/" "/"\n"/g')"

echo "$variable" > $file

if [ -s "$file" ]; then
   while read absolute_path_file; do
      absolute_path_file="$(eval echo "$absolute_path_file")"
      base_name="$(basename "$absolute_path_file")"
      ### Execute the actions with the selected files here
      ### echo "$absolute_path_file"
      ### echo "$base_name"
   done < $file
fi

该脚本不依赖于NAUTILUS变量,您可以使用它创建一个快捷方式:

/bin/bash -c "sleep 1 && /path/script.bash"
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.