XFCE:设置全局文件关联

XFCE:设置全局文件关联

我有许多用户通过瘦客户端使用 Debian 系统,我正在寻找一种方法来为所有 XFCE4 桌面环境全局设置文件关联。

有没有办法设置 Thunar 或其他文件管理器与 xfce 桌面图标的关联,以便它们对于所有用户来说都是相同的?

答案1

要在整个系统范围内执行此操作,您需要创建/usr/share/applications/mimeapps.list如下内容

[Default Applications]
application/pdf=evince.desktop
image/png=eog.desktop

用于xdg-mime找出你的文件的 mime 类型:

xdg-mime query filetype /etc/passwd

您可以使用以下方式查找可用的应用程序ls /usr/share/applications/*.desktop

答案2

使用mimeopen工具。它为您提供了不错的选项,并且保存的选项被写入,~/.local/share/applications/defaults.list以便您选择的选项被保存为默认值。

   mimeopen -d /path/to/myfile

参考:https://wiki.archlinux.org/index.php/default_applications

相关内容