I'm running Debian 12.9 with xfce on mine. Your suffering may vary.
Audio
To be fixed still. Headphone output works, but nothing from the speaker.
Apparently this fix should work, but I've not had any luck:
Edit /usr/share/pulseaudio/alsa-mixer/paths/analog-output-speaker.conf
Change
Code: Select all
[Element Headphone]
switch = off
volume = off
Code: Select all
[Element Headphone]
switch = off
volume = merge
override-map.1 = all
override-map.2 = all-left,all-right
Code: Select all
[Element Speaker]
required-any = any
switch = mute
volume = merge
override-map.1 = all
override-map.2 = all-left,all-right
Code: Select all
[Element Speaker]
required-any = any
switch = mute
volume = off
Touch
Works out of the box, but cannot be calibrated with xinput_calibrator.
This is due to the touch panel not being correctly detected by the software, and produces a seemingly functional result, but is in fact broken. To fix this, do the following:
Code: Select all
sudo apt install xserver-xorg-input-evdev
sudo apt remove xserver-xorg-input-libinput
Tablet buttons
These are the buttons on the left front edge of the computer.
Do
Code: Select all
sudo apt install git make build-essential dbus-x11 dconf-editor dconf-service
Code: Select all
git clone https://github.com/cyberpunkcoder/panasonic-hbtn
cd panasonic-hbtn
make clean
make all
make install
Code: Select all
cd /usr/local/bin/
TouchscreenDevice='Fujitsu Component Limited USB Touch Panel'
The tablet buttons should now work as regular keyboard keys, meaning you can create new keyboard shortcuts to run the rotate-screen script, open a virtual keyboard (I installed onboard for this) or make them trigger whatever you like.
In case the github with the tablet button stuffs were to go down, I thought I'd put a copy of it here as well.