Ubuntu 20.04 마우스 스크롤 휠 속도

3933 단어 ubuntumouse

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
    

  • 적용 버튼을 클릭하여 팝업에서 마우스 휠 속도를 설정합니다. (내 설정은 7) 변경을 위해 스크립트를 다시 실행합니다.
  • 마지막으로 우분투 시작 응용 프로그램에 imwheel을 추가합니다.

  • 이전 및 다음 마우스 버튼에 문제가 있는 경우:


  • imwhell에 -b "4 5" 추가:

  • imwheel -b "4 5"
    


    여기에서 앱별 속도 설정에 대한 다른 세부 정보를 찾을 수 있습니다.







    또는 매뉴얼 페이지에서 : man imwheel



    이미지 : Pexels

    죄송합니다. 첫 번째 게시물입니다.
    좋은 하루 되세요 !

    좋은 웹페이지 즐겨찾기