Use Exec=<open.py "unzap" %F>
instead of Exec=unzap "%F"
in the unzap.nemo_action
.
The unescape the backslashes in open.py
as follows:
#! /usr/bin/python3 -OOt
import sys
import subprocess
command = sys.argv[1]
filename = sys.argv[2].replace(" "," ")
subprocess.run([command, filename])
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…