我想让 终结者替换默认终端。例如,当在一个文件夹中右键单击然后选择“打开终端”时,我希望终结者打开而不是默认打开。
如何使用 Xubuntu 实现这一点?
从终端内部,尝试
sudo update-alternatives --config x-terminal-emulator
从备选列表中选择所需的终端。
将以下内容复制粘贴到当前终端:
gsettings set org.gnome.desktop.default-applications.terminal exec /usr/bin/terminator gsettings set org.gnome.desktop.default-applications.terminal exec-arg "-x"
这修改了 Dconf,使得终止程序成为默认程序。还可以使用 dconf-Editor (一种基于 GUI 的工具)对 dconf 进行更改,另一个答案建议这样做。如果你想学习和了解更多关于这个主题,这个可能会帮助你。
打开 dconf 编辑器,进入 org > gnome > 桌面 > 应用程序 > 终端和 把侏儒终端改为终结者
更改设置管理器 > > 首选应用程序 > > 实用程序
唯一对我有用的方法就是
gksudo nautilus
在 xfce (例如 Arch Linux)中,可以更改参数 TerminalEmulator:
TerminalEmulator
TerminalEmulator=xfce4-terminal
到
TerminalEmulator=custom-TerminalEmulator
下次打开终端窗口时,xfce 将要求您选择模拟器。你可以选择 /usr/bin/terminator。
/usr/bin/terminator
/etc/xdg/xfce4/helpers.rc
/home/USER/.config/xfce4
Devnull 是正确的;
参见 给你和 给你,以及 给你中的一些注释。