gpt4 book ai didi

ubuntu-20.04 - 未选择任何内容时,Nautilus 脚本未显示在右键菜单中

转载 作者:行者123 更新时间:2023-12-05 06:08:16 24 4
gpt4 key购买 nike

我有以下脚本可以在 Nautilus(使用 Ubuntu 20.04)中向我的右键单击菜单添加一个操作:

~/.local/share/nautilus/scripts/Open with Disk Usage Analyzer:

#!/usr/bin/env bash
if [ -n "$NAUTILUS_SCRIPT_SELECTED_URIS" ]; then
set $NAUTILUS_SCRIPT_SELECTED_URIS
if [ $# -eq 1 ]; then
destination="$1"
if [ ! -d "$destination" ]; then
destination="$(dirname "$destination")"
fi
else
zenity --error --title="Error - Open with Disk Usage Analyzer" --text="You can only select one directory."
exit 1
fi
else
destination="$NAUTILUS_SCRIPT_CURRENT_URI"
fi

baobab "$destination"

选择文件夹(或文件)时,脚本在右键单击菜单中正确出现:

enter image description here

但是,如果没有选择文件或文件夹,则脚本条目根本不会出现在右键菜单中:

enter image description here

无论是否进行选择,如何使脚本条目显示在右键菜单中?

最佳答案

Nautilus 一直都是这样,我用的是 Pcman-FM,2009 年我迁移到 Nautilus,一直都是这样,不幸的是,你必须选择一个文件夹才能有脚本。最好使用 fff 或 ranger :)

关于ubuntu-20.04 - 未选择任何内容时,Nautilus 脚本未显示在右键菜单中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65160163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com