Thinkpad yoga: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
(Die Seite wurde neu angelegt: „ == linux rotation - ScreenRotator == <source lang=bash> sudo apt install -y git cmake build-essential qtbase5-dev libxrandr-dev libxi-dev libqt5x11extras5-d…“)
 
(linux rotation - ScreenRotator)
 
(4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 3: Zeile 3:
 
== linux rotation - ScreenRotator ==
 
== linux rotation - ScreenRotator ==
  
<source lang=bash>
+
* Installation
 +
<source lang="bash">
 
sudo apt install -y git cmake build-essential qtbase5-dev libxrandr-dev libxi-dev libqt5x11extras5-dev libqt5sensors5-dev  
 
sudo apt install -y git cmake build-essential qtbase5-dev libxrandr-dev libxi-dev libqt5x11extras5-dev libqt5sensors5-dev  
 
git clone https://github.com/GuLinux/ScreenRotator
 
git clone https://github.com/GuLinux/ScreenRotator
Zeile 12: Zeile 13:
 
sudo make install
 
sudo make install
 
</source>
 
</source>
 +
* screenrotator starten bzw zum autostart hinzufügen
 +
  
 
* https://forum.endeavouros.com/t/how-to-enable-automatic-screen-rotation-in-kde-in-x11/47188
 
* https://forum.endeavouros.com/t/how-to-enable-automatic-screen-rotation-in-kde-in-x11/47188
 
** https://github.com/GuLinux/ScreenRotator
 
** https://github.com/GuLinux/ScreenRotator
 +
 +
== linux touch screen - xinput ==
 +
 +
<source lang="bash">
 +
xinput list
 +
⎡ Virtual core pointer                          id=2    [master pointer  (3)]
 +
⎜  ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
 +
⎜  ↳ Wacom Pen and multitouch sensor Finger touch      id=9    [slave  pointer  (2)]
 +
⎜  ↳ Wacom Pen and multitouch sensor Pen stylus        id=10  [slave  pointer  (2)]
 +
⎜  ↳ AlpsPS/2 ALPS DualPoint TouchPad          id=12  [slave  pointer  (2)]
 +
⎜  ↳ AlpsPS/2 ALPS DualPoint Stick            id=13  [slave  pointer  (2)]
 +
⎜  ↳ Wacom Pen and multitouch sensor Pen eraser        id=15  [slave  pointer  (2)]
 +
⎣ Virtual core keyboard                        id=3    [master keyboard (2)]
 +
    ↳ Virtual core XTEST keyboard              id=5    [slave  keyboard (3)]
 +
    ↳ Power Button                              id=6    [slave  keyboard (3)]
 +
    ↳ Video Bus                                id=7    [slave  keyboard (3)]
 +
    ↳ Sleep Button                              id=8    [slave  keyboard (3)]
 +
    ↳ AT Translated Set 2 keyboard              id=11  [slave  keyboard (3)]
 +
    ↳ ThinkPad Extra Buttons                    id=14  [slave  keyboard (3)]
 +
 +
xinput enable 'Virtual core pointer'
 +
</source>

Aktuelle Version vom 24. November 2024, 19:21 Uhr


linux rotation - ScreenRotator

  • Installation
sudo apt install -y git cmake build-essential qtbase5-dev libxrandr-dev libxi-dev libqt5x11extras5-dev libqt5sensors5-dev 
git clone https://github.com/GuLinux/ScreenRotator
mkdir ScreenRotator/build
cd ScreenRotator/build
cmake ..
make all
sudo make install
  • screenrotator starten bzw zum autostart hinzufügen


linux touch screen - xinput

xinput list
⎡ Virtual core pointer                          id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ Wacom Pen and multitouch sensor Finger touch      id=9    [slave  pointer  (2)]
⎜   ↳ Wacom Pen and multitouch sensor Pen stylus        id=10   [slave  pointer  (2)]
⎜   ↳ AlpsPS/2 ALPS DualPoint TouchPad          id=12   [slave  pointer  (2)]
⎜   ↳ AlpsPS/2 ALPS DualPoint Stick             id=13   [slave  pointer  (2)]
⎜   ↳ Wacom Pen and multitouch sensor Pen eraser        id=15   [slave  pointer  (2)]
⎣ Virtual core keyboard                         id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
    ↳ Power Button                              id=6    [slave  keyboard (3)]
    ↳ Video Bus                                 id=7    [slave  keyboard (3)]
    ↳ Sleep Button                              id=8    [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=11   [slave  keyboard (3)]
    ↳ ThinkPad Extra Buttons                    id=14   [slave  keyboard (3)]

xinput enable 'Virtual core pointer'