Inkscape 1.x 从哪里获取路径设置?

Inkscape 1.x 从哪里获取路径设置?

在 Gentoo Linux 上的 Inkscape 1.02 中,我在系统设置窗口中看到几个重复的路径(使用 CTRL + SHIFT + P 打开)

具有重复路径的屏幕截图

我想删除过时/重复的路径。 Inkscape 从哪里获取这些路径信息?

echo ${PATH}

显示不同的路径。

答案1

这听起来像是 Inkscape 的功能请求,以使该字段中显示的路径唯一。 Inkscape 错误跟踪器位于https://inkscape.org/report

答案2

@Moini 是对的:打开一个Inkscape bugtracker 上的票证很好,内森·李很快就回复了。

我总结了其他 .sx 读者的答案,因为我预计有几个系统需要修复以防止重复或错误的路径:

Inkscape 使用返回的路径

Glib::get_system_data_dirs

Gtk::IconTheme::get_default()->get_search_path()

这些可以通过命令行收集

python3 -c "from gi.repository import GLib; print(GLib.get_system_data_dirs())"
['/usr/local/share', '/usr/share', '/usr/share']

python3 -c "from gi.repository import Gtk; print(Gtk.IconTheme.get_default().get_search_path())"
['/home/myuser/.local/share/icons', '/home/myuser/.icons', 
'/usr/local/share/icons', '/usr/share/icons', '/usr/share/icons', 
'/usr/local/share/pixmaps', '/usr/share/pixmaps', '/usr/share/pixmaps']

相关内容