在 Linux Mint 中用 konsole 替换 gnome-terminal

在 Linux Mint 中用 konsole 替换 gnome-terminal

我安装了控制台并卸载了gnome 终端通过做:

sudo apt install -y konsole
sudo apt-get purge --auto-remove gnome-terminal

然后尝试:

sudo update-alternatives --config x-terminal-emulator

设置控制台作为默认模拟器,它返回:

There is only one alternative in link group x-terminal-emulator (providing /usr/bin/x-terminal-emulator): /usr/bin/konsole
Nothing to configure.

但默认的Ctrl+ Alt+t快捷方式都不起作用,右键单击打开终端也不起作用。

我该如何解决这个问题?

答案1

现在运行时的输出是什么sudo update-alternatives --config x-terminal-emulator

我的是:

There are 2 choices for the alternative x-terminal-emulator (providing /usr/bin/x-terminal-emulator).

  Selection    Path                             Priority   Status
------------------------------------------------------------
  0            /usr/bin/konsole                  40        auto mode
  1            /usr/bin/gnome-terminal.wrapper   40        manual mode
* 2            /usr/bin/konsole                  40        manual mode

Press <enter> to keep the current choice[*], or type selection number:

答案2

使用命令后:

sudo update-alternatives --config x-terminal-emulator

并从终端菜单中选择 Konsole。我仍然需要进入 Linux Mint 的“首选应用程序”菜单并将 Konsole 设置为默认模拟器。这是唯一对我有用的事情。

相关内容