[Bin] Fix wacom-setup script, touchpad configs dropped

For some reason, I don’t see anymore my tablet’s touchpad in the
xinput list, so this commit drops modifications to the touchpad’s
configuration.
This commit is contained in:
Lucien Cartier-Tilet 2021-02-06 00:51:29 +01:00
parent 95a16788e7
commit 05a68817ea
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 37 additions and 70 deletions

View File

@ -343,14 +343,6 @@ We need some variables in order to correctly set our tablet. First, lets get
declare what the name of our tablet is, and what the name of its touchpad is.
#+BEGIN_SRC fish
set -g DEVICE "Wacom Co.,Ltd. Bamboo Pad, USB stylus"
set -g DEVICETOUCH "Wacom USB Bamboo PAD Finger touch"
#+END_SRC
We will also modify two settings: the speed of the cursor on the touchpad, and
the scroll speed. Lets declare the name of these two settings.
#+BEGIN_SRC fish
set -g WACOMPROPTOUCHSPEED "Device Accel Velocity Scaling"
set -g WACOMPROPSCROLLPSEED "ScrollDistance"
#+END_SRC
To get the correct values for the area it can cover, well need to reset our
@ -373,47 +365,42 @@ Now we can get the X and Y areas.
This function will allow us to select the screen on which the tablet will be
active. We can also select the option “desktop” so that all screens are
selected. Lets declare our function.
#+BEGIN_SRC fish
function set_screen
#+BEGIN_SRC fish :noweb yes
function set_screen
<<wacom-connected-displays>>
<<wacom-get-screen>>
<<wacom-get-position>>
<<wacom-get-dimensions>>
end
#+END_SRC
First, lets set what screens are available, including the desktop option.
#+BEGIN_SRC fish
#+NAME: wacom-connected-displays
#+BEGIN_SRC fish :tangle no
set CONNECTED_DISPLAYS (xrandr -q --current | \
sed -n 's/^\([^ ]\+\) connected .*/\1/p') desktop
#+END_SRC
Now, lets select the one we wish to use using rofi.
#+BEGIN_SRC fish
#+NAME: wacom-get-screen
#+BEGIN_SRC fish :tangle no
set -g SCREEN (for d in $CONNECTED_DISPLAYS
echo $d
end | rofi -dmenu -i -p "Select your dispaly" | tr -d '\n')
#+END_SRC
Now, lets get the resolution of our selected screen.
#+BEGIN_SRC fish
set -l LINE (xrandr -q --current | if [ "$SCREEN" = "desktop" ]
sed -n 's/^Screen 0:.*, current \([0-9]\+\) x \([0-9]\+\),.*/\1 \2/p'
else
sed -n "s/^$SCREEN"' connected \(primary \)\{0,1\}\([0-9]\+\)x\([0-9]\+\)+.*/\2 \3/p'
end)
Now, lets get the position of the screen:
#+NAME: wacom-get-position
#+BEGIN_SRC fish :tangle no
set -g POSITION (xrandr -q --current | sed -nr "s/^$SCREEN connected (primary )*([0-9x\+]+).*/\2/p")
#+END_SRC
From that, lets get the vertical and horizontal resolution of our screen.
#+BEGIN_SRC fish
echo $LINE | read -g WIDTH HEIGHT
#+END_SRC
If any of our ~WIDTH~ ou ~HEIGHT~ it empty, well have to abort the script.
#+BEGIN_SRC fish
if test -z $WIDTH || test -z $HEIGHT
exit 1
end
#+END_SRC
Lets close our function now.
#+BEGIN_SRC fish
end
Well also get the width and the height of the screen so we can set correctly
the drawing area of the tablet.
#+NAME: wacom-get-dimensions
#+BEGIN_SRC fish :tangle no
set -g HEIGHT (echo $POSITION | sed -nr 's/[0-9]+x([0-9]+).*/\1/p')
set -g WIDTH (echo $POSITION | sed -nr 's/([0-9]+)x.*/\1/p')
#+END_SRC
*** Adjust the tablet
@ -422,23 +409,30 @@ end
:END:
This function will take care of adjusting our tablet to our screen. Lets
declare our function.
#+BEGIN_SRC fish
function adjust_device
#+BEGIN_SRC fish :noweb yes
function adjust_device
<<wacom-set-ratio-area>>
<<wacom-set-new-area>>
<<wacom-set-device-area-and-screen>>
end
#+END_SRC
If our screen is too high or too wide for our tablet, we will have to adjust the
height or width of the area used by the tablet. So lets get the theoretical new
height and width of the area.
#+BEGIN_SRC fish
set RATIOAREAY (math ceil \($AREAX \* $HEIGHT \/ $WIDTH\))
set RATIOAREAX (math ceil \($AREAY \* $WIDTH \/ $HEIGHT\))
#+NAME: wacom-set-ratio-area
#+BEGIN_SRC fish :tangle no
set RATIOAREAY (math ceil "($AREAX * $HEIGHT / $WIDTH)")
set RATIOAREAX (math ceil "($AREAY * $WIDTH / $HEIGHT)")
#+END_SRC
Now, if the current height of the tablets area is greater than the theoretical
new area, it means the current area is too high. Otherwise, it should be the
other way around. Lets set =NEWAREAX= and =NEWAREAY= that will be used to set
the new area for the tablet.
#+BEGIN_SRC fish
#+NAME: wacom-set-new-area
#+BEGIN_SRC fish :tangle no
if test $AREAY -gt $RATIOAREAY
set -g NEWAREAX $AREAX
set -g NEWAREAY $RATIOAREAY
@ -449,24 +443,10 @@ the new area for the tablet.
#+END_SRC
Alright, now lets set the new area with these new variables.
#+BEGIN_SRC fish
#+NAME: wacom-set-device-area-and-screen
#+BEGIN_SRC fish :tangle no
xsetwacom set "$DEVICE" Area 0 0 $NEWAREAX $NEWAREAY
xsetwacom set "$DEVICE" MapToOutput "$SCREEN"
#+END_SRC
Lets slow down the cursors speed on the touchpad.
#+BEGIN_SRC fish
xinput set-float-prop $DEVICETOUCH $WACOMPROPTOUCHSPEED 0.5
#+END_SRC
Lets also slow down the scroll speed of the touchpad.
#+BEGIN_SRC fish
xsetwacom set $DEVICETOUCH $WACOMPROPSCROLLPSEED "90"
#+END_SRC
Now, lets close the function.
#+BEGIN_SRC fish
end
xsetwacom set "$DEVICE" MapToOutput "$POSITION"
#+END_SRC
*** Lauch the functions
@ -480,19 +460,6 @@ sequencially.
adjust_device
#+END_SRC
*** TODO Fix this script :noexport:
:PROPERTIES:
:CUSTOM_ID: cli-utilities-Wacom-setup-Fix-this-script-76ddec7c
:END:
When running this script, I get the following error:
#+BEGIN_SRC text
Unable to find an output 'HDMI1'.
unable to find device Wacom USB Bamboo PAD Finger touch
Cannot find device 'Wacom USB Bamboo PAD Finger touch'.
#+END_SRC
The first one is caused by ~xsetwacom~. The second one, I do not know where I
should find ~Wacom USB Bamboo PAD Finger touch~.
* Emacs stuff
:PROPERTIES:
:CUSTOM_ID: Emacs-stuff-8e76efd4