📌  相关文章
📜  如何在 ubuntu 20 中启用滚动锁定 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:24:23.868000             🧑  作者: Mango

如何在 ubuntu 20 中启用滚动锁定 - Shell-Bash

在 ubuntu 20 中,滚动锁定是默认关闭的。如果您希望启用滚动锁定,可以按照以下步骤进行操作:

  1. 打开终端 (Ctrl + Alt + T),进入 Shell-Bash。

  2. 使用以下命令安装 dconf-editor:

sudo apt install dconf-editor
  1. 启动 dconf-editor:
dconf-editor
  1. 在 dconf-editor 窗口中,打开 org/gnome/desktop/peripherals/mouse。

  2. 将滚动锁定 (scroll-lock) 的值设置为 true。

  3. 关闭 dconf-editor。

现在您已经成功启用了滚动锁定功能。

需要注意的是,如果您使用的是 Xfce 或其他桌面环境,可能需要在不同的位置查找滚动锁定选项。

此外,您也可以使用以下命令来开启滚动锁定:

gsettings set org.gnome.desktop.peripherals.mouse scroll-lock true

希望这篇介绍对您有所帮助。