Nautilusスクリプトを設定しました。スクリプトを挿入しました/home/sumeet/.local/share/nautilus/scripts
が、右クリックメニューに表示されます。また、期待どおりに動作します。スクリプトにショートカットを割り当てたいだけです。
nautilusスクリプトのキーボードショートカットを作成するにはどうすればよいですか?
上記の質問の回答は特定のリリースを対象としており、完全に古くなっており、このトピックに関するこの質問以外は何も見つかりませんでした。
Nautilusスクリプトを設定しました。スクリプトを挿入しました/home/sumeet/.local/share/nautilus/scripts
が、右クリックメニューに表示されます。また、期待どおりに動作します。スクリプトにショートカットを割り当てたいだけです。
nautilusスクリプトのキーボードショートカットを作成するにはどうすればよいですか?
上記の質問の回答は特定のリリースを対象としており、完全に古くなっており、このトピックに関するこの質問以外は何も見つかりませんでした。
回答:
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以降)を使用するには、xdotool
およびの両方をインストールする必要がありますpython3-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"])
python
のpyperclip
モジュールは、file://
使用時に取り除かれたパスを生成するだけですpyperclip.paste()
(これは文字通り貼り付けられませんが、スクリプト内でパスを使用できるようにします)。
ファイルを選択してアクションを実行することが目的の場合は、xdotool
およびでシェルスクリプトを使用するだけで実行できます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"