Ubuntu 20.04 마우스 스크롤 휠 속도
Ubuntu 20.04 마우스 스크롤 휠 속도
that을 찾을 때까지 스크롤 속도가 매우 느렸습니다.
설치 및 실행
다음을 사용하여 imwhell을 설치해야 합니다.
sudo apt install imwheel
http://www.nicknorton.net에서 이 bash 스크립트를 다운로드합니다(그에게 감사합니다).
다음과 같이 입력할 수 있습니다.
의견에 말하십시오 :
You can just do
bash <(curl -s http://www.nicknorton.net/mousewheel.sh)
instead of copy the script manually and changing permissions. :)
#!/bin/bash
# Version 0.1 Tuesday, 07 May 2013
# Comments and complaints http://www.nicknorton.net
# GUI for mouse wheel speed using imwheel in Gnome
# imwheel needs to be installed for this script to work
# sudo apt-get install imwheel
# Pretty much hard wired to only use a mouse with
# left, right and wheel in the middle.
# If you have a mouse with complications or special needs,
# use the command xev to find what your wheel does.
#
### see if imwheel config exists, if not create it ###
if [ ! -f ~/.imwheelrc ]
then
cat >~/.imwheelrc<<EOF
".*"
None, Up, Button4, 1
None, Down, Button5, 1
Control_L, Up, Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L, Up, Shift_L|Button4
Shift_L, Down, Shift_L|Button5
EOF
fi
##########################################################
CURRENT_VALUE=$(awk -F 'Button4,' '{print $2}' ~/.imwheelrc)
NEW_VALUE=$(zenity --scale --window-icon=info --ok-label=Apply --title="Wheelies" --text "Mouse wheel speed:" --min-value=1 --max-value=100 --value="$CURRENT_VALUE" --step 1)
if [ "$NEW_VALUE" == "" ];
then exit 0
fi
sed -i "s/\($TARGET_KEY *Button4, *\).*/\1$NEW_VALUE/" ~/.imwheelrc # find the string Button4, and write new value.
sed -i "s/\($TARGET_KEY *Button5, *\).*/\1$NEW_VALUE/" ~/.imwheelrc # find the string Button5, and write new value.
cat ~/.imwheelrc
imwheel -kill
그런 다음 다음을 사용하여 .sh 파일을 실행 가능하도록 설정합니다.
chmod +x mousewheel.sh
그런 다음 다음을 사용하여 스크립트를 실행하십시오.
./mousewheel.sh
이전 및 다음 마우스 버튼에 문제가 있는 경우:
-b "4 5"
추가:imwheel -b "4 5"
여기에서 앱별 속도 설정에 대한 다른 세부 정보를 찾을 수 있습니다.
Ubuntu 18.04 Virtualbox/VMWare에서 Chrome의 마우스 휠 수정
댄 보이스 ・ 2019년 7월 23일 ・ 2분 읽기
#ubuntu
#scrolling
#virtualbox
#mousewheel
또는 매뉴얼 페이지에서 : man imwheel
이미지 : Pexels
죄송합니다. 첫 번째 게시물입니다.
좋은 하루 되세요 !
Reference
이 문제에 관하여(Ubuntu 20.04 마우스 스크롤 휠 속도), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bbavouzet/ubuntu-20-04-mouse-scroll-wheel-speed-536o텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)