1. 簡介
imwheel是一組命令工具可以用來調節滑鼠滾輪的行為,修改滾輪速度。
2. 安裝imwheel
sudo apt install imwheel
檢視安裝位置
whereis imwheel
3. 配置sudo vim ~/.imwheelrc
".*"
none, up, button4, 2
none, down, button5, 2
control_l, up, control_l|button4
control_l, down, control_l|button5
shift_l, up, shift_l|button4
shift_l, down, shift_l|button5
none, thumb1, alt_l|left
none, thumb2, alt_l|right
4. 啟動執行
檢視是否有已啟動imwheel程序
ps -ef |
grep imwheel
為了不要啟動多個imwheel,可以結束已有程序
sudo
killall imwheel
然後重新啟動程式,修改配置後需要重啟才能生效
imwheel
5. 設定開機啟動
試過在rc.local中執行nohup /usr/bin/imwheel &
,排查該命令確實在開機後被執行,但是ps
卻看不到該程序,一番折騰也沒找到原因╮(╯_╰)╭
實測ubuntu16.04簡單有效的方法:
6. references
C 設定開機啟動啟動
方法一 設定開機自動啟動 如果遇到開啟啟動不能讀取配置檔案的話請看下面 請使用絕對路徑 windows registry editor version 5.00 hkey current user software microsoft windows currentversion run cctrl...
ubuntu 設定開機啟動
1 方法一,編輯rc.loacl指令碼 ubuntu開機之後會執行 etc rc.local檔案中的指令碼,所以我們可以直接在 etc rc.local中新增啟動指令碼。當然要新增到語句 exit 0前面才行。如 sudo vi etc rc.local 然後在 exit 0 前面新增好指令碼 2 ...
Linux設定開機啟動
vim etc rc.local 末尾新增 在 bin sh下新增 chkconfig 2345 80 90 description auto run 注 1 chkconfig後面有三個引數2345,80和90告訴chkconfig程式,需要在rc2.d rc5.d目錄下,建立名字為s80auto...