2017-04-24 76 views
1

我有一個Adesso Cyber​​tablet Z7。我確實安裝了Wizardpen驅動程序。我失去了壓力敏感度。我卸載它。 我不需要Huion司機。我只需要做兩件事。非Wacom平板設置Manjaro Linux

Install xinput_calibrator. 
Uninstall something from xorg or xf86. 

這樣做後,繪圖板立即工作。沒有校準或任何東西。我必須手動將其映射到我的顯示器之一:

xinput --map-to-output 9 HDMI-0; xinput --map-to-output 13 HDMI-0 

我每次使用它。我知道他們在我重新啓動時會改變。我不介意。 我只是不記得需要卸載哪個文件。

xinput -- list 
⎡ Virtual core pointer id=2 [master pointer (3)] 
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] 
⎜ ↳ UC-LOGIC Tablet WP5540U Mouse id=9 [slave pointer (2)] 
⎜ ↳ 2.4G 2.4G Wireless Device id=13 [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)] 
    ↳ Power Button id=7 [slave keyboard (3)] 
    ↳ Sleep Button id=8 [slave keyboard (3)] 
    ↳ Ideazon Merc Stealth id=10 [slave keyboard (3)] 
    ↳ Ideazon Merc Stealth id=11 [slave keyboard (3)] 
    ↳ 2.4G 2.4G Wireless Device id=12 [slave keyboard (3)] 
    ↳ 2.4G 2.4G Wireless Device id=14 [slave keyboard (3)] 

有沒有其他人有這個問題,或做了我沒有校準或搞亂.conf文件的工作嗎?

回答

1

我要回答我自己的問題。我使用Cinnamon DE。我所做的是...

  1. 確保Huion和Wizardpen驅動程序卸載
  2. sudo nemo
  3. 跑到:/etc/X11/xorg.conf.d
  4. 創建了一個名爲中有一個文件:61-UC-LOGIC_Tablet_WP5540U.conf(改名)我從here了。

在該文件中我進入:

Section "InputClass" 
Identifier "UC-LOGIC Tablet WP5540U" 
MatchIsTablet "on" 
MatchDevicePath "/dev/input/event*" 
MatchProduct "Tablet WP5540U" 
Driver "evdev" 
Option "Mode" "absolute" 
EndSection 

4A。還有其他 「選項」,在那裏,以及我刪除

Option "TransformationMatrix" "1 0 0 0 0.75 0 0 0 1" 
Option "ConstantDeceleration" "4" 

我也改變了

Option "Module" "relative" to Option "Mode" "absolute" 

4B。我還將標識符更改爲我的型號平板電腦WP5540U。

  1. 我確定安裝了xf86-input-evdev和libevdev。

  2. 然後我安裝了uclogic-tools和xf86-input-synaptics。

  3. 重啓

  4. 然後我在終端

    xinput --list 
    

輸出類型:

⎡ Virtual core pointer id=2 [master pointer (3)] 
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] 
⎜ ↳ 2.4G 2.4G Wireless Device id=10 [slave pointer (2)] 
⎜ ↳ UC-LOGIC Tablet WP5540U Pen id=13 [slave pointer (2)] 
⎜ ↳ UC-LOGIC Tablet WP5540U Mouse id=14 [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)] 
↳ Power Button id=7 [slave keyboard (3)] 
↳ Sleep Button id=8 [slave keyboard (3)] 
↳ 2.4G 2.4G Wireless Device id=9 [slave keyboard (3)] 
↳ Ideazon Merc Stealth id=11 [slave keyboard (3)] 
↳ Ideazon Merc Stealth id=12 [slave keyboard (3)] 
↳ 2.4G 2.4G Wireless Device id=15 [slave keyboard (3)] 

正如你看到我的設備上面的差異現在認識並提供給映射到我的4臺顯示器中的一臺:

xinput --map-to-output "id=?" "output" 

id =?因爲id在啓動時發生了變化。

壓力靈敏度工作完美無缺。

另外。我不需要校準。

+0

libinput xorg xf86 adesso non-wacom wacom manjaro synaptics tablet uclogic uc-logic uclogic-tools evdev – user5858360