正如标题所说,我想增加使用鼠标滚轮滚动时传递的行数。我知道有一些方法可以为 Firefox 和 Chromium 做到这一点,尽管我想要整个系统的东西,主要是因为 PDF 阅读器。
我在台式机上并使用 Microsoft 无线鼠标 5000。
当您转到“启动应用程序”时,您会看到启动时执行的命令列表,您可以添加自己的命令。
我想知道这个列表存储在哪里。它在 gconf 的某个地方吗?
我想知道这个有两个原因:
我是 Linux 新手,刚开始使用 ubuntu 14.04。我试图通过编辑 rc.local 文件在启动时运行 imwheel 进程。也许我做错了什么,我需要输入一个程序路径,就像终端中的名字一样?
当我尝试通过运行进行检查时:
sudo service rc.local start
Run Code Online (Sandbox Code Playgroud)
我收到以下消息:INFO:
imwheel started (pid=4906)
Could not open display, check shell DISPLAY variable, and export or setenv it!
Run Code Online (Sandbox Code Playgroud)
rc.local 文件:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just …
Run Code Online (Sandbox Code Playgroud)