Liczba postów: 15
Liczba wątków: 6
Dołączył: Dec 2021
Reputacja:
System: 20.3 Una
Środowisko graficzne: MATE
Architektura CPU: 64bit
Inny System: LInux Mint
Miernik podziękowań 0%
0 Kod: piotruniek51@piotruniek51-Inspiron-15-7000-Gaming:~$ apt policy imwheel
imwheel:
Zainstalowana: (brak)
Kandydująca: 1.0.0pre12-12
Tabela wersji:
1.0.0pre12-12 500
500 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages
piotruniek51@piotruniek51-Inspiron-15-7000-Gaming:~$ cat ~/.local/bin/mousewheel.sh
#!/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
piotruniek51@piotruniek51-Inspiron-15-7000-Gaming:~$ cat ~/.imwheelrc
".*"
None, Up, Button4, 100
None, Down, Button5, 100
Control_L, Up, Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L, Up, Shift_L|Button4
Shift_L, Down, Shift_L|Button5
piotruniek51@piotruniek51-Inspiron-15-7000-Gaming:~$
Liczba postów: 4 206
Liczba wątków: 76
Dołączył: Dec 2018
Reputacja:
System: Inny
Środowisko graficzne: Xfce
Architektura CPU: 64bit
Inny System: Debian testing/sid
Miernik podziękowań 39%
0 Cytat:apt policy imwheel
imwheel:
Zainstalowana: (brak)
Liczba postów: 15
Liczba wątków: 6
Dołączył: Dec 2021
Reputacja:
System: 20.3 Una
Środowisko graficzne: MATE
Architektura CPU: 64bit
Inny System: LInux Mint
Miernik podziękowań 0%
Liczba postów: 4 206
Liczba wątków: 76
Dołączył: Dec 2018
Reputacja:
System: Inny
Środowisko graficzne: Xfce
Architektura CPU: 64bit
Inny System: Debian testing/sid
Miernik podziękowań 39%
0 Zgodnie z tutorialem, który podobno wykonałeś kompletnie.
Liczba postów: 15
Liczba wątków: 6
Dołączył: Dec 2021
Reputacja:
System: 20.3 Una
Środowisko graficzne: MATE
Architektura CPU: 64bit
Inny System: LInux Mint
Miernik podziękowań 0%
0 Założyłem nowe konto administratorskie i spróbowałem wykonać kolejny raz komendy do aplikacji Mouse Wheel Adjusment. Wynik jest jak widać pozytywny. Ostatnia komenda wyrzuca uwagę, a klikając w ikonkę z pulpitu dostaję infrmację "wystąpił błąd podczas uruchamiania programu".
Kod: mordec47@piotruniek51-Inspiron-15-7000-Gaming:~$ apt policy imwheel
imwheel:
Zainstalowana: 1.0.0pre12-12
Kandydująca: 1.0.0pre12-12
Tabela wersji:
*** 1.0.0pre12-12 500
500 http://ftp.agh.edu.pl/ubuntu focal/universe amd64 Packages
100 /var/lib/dpkg/status
mordec47@piotruniek51-Inspiron-15-7000-Gaming:~$ cat ~/.local/bin/mousewheel.sh
#!/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
mordec47@piotruniek51-Inspiron-15-7000-Gaming:~$ cat ~/.imwheelrc
cat: /home/mordec47/.imwheelrc: No such file or directory
mordec47@piotruniek51-Inspiron-15-7000-Gaming:~$
Liczba postów: 2 530
Liczba wątków: 24
Dołączył: Jan 2019
Reputacja:
System: 21.3 Virginia
Środowisko graficzne: Cinnamon
Architektura CPU: 64bit
Miernik podziękowań 24%
0 A masz plik ".imwheelrc" w swoim katalogu domowym? Plik z kropką, więc jest ukryty (Ctrl+H wyświetla ukryte pliki i katalogi).
|