Open hyiltiz opened 5 years ago
What worked is the simple
Xorg.conf
template on this site (including below to keep the post complete):Section "InputClass" Identifier "Tablet" Driver "wacom" MatchDevicePath "/dev/input/event*" MatchUSBID "<VID>:<PID>" EndSection
where
<VID>:<PID>
is the ID fromlsusb
output.
Sorry but I'm kinda lost, how did you get it to work? I can get the template myself, fill it out correctly but then.. where do I put it?
Edit: I looked into it more saw the small tutorial at the front page of this project
Said I needed to have X.org
drivers installed (I installed using the .deb
so I should of had it)
Then said to find /etc/X11/xorg.conf.d/50-tablet.conf
but there was no xorg.conf.d
folder
I did a full search for it and it ended up being in my usr/shared/...
area instead
And there was no 50-tablet.conf
file there, only a 50-digimend.conf
file
When attempting to alter anything there it would then say that I wasn't the owner and did not have the perms
Had to do sudo gedit
to alter the file
My goal was to finally have pressure sense but it didn't help achieve that, it made the tablet less responsive instead with the ability to hover suddenly disabled. It would only draw when medium pressure is put on the pen
Again, what is this Xorg.conf
that you say was simple??
The one I found had already had presets in it, so I just added my tablet to it:
Section "InputClass"
Identifier "Tablet"
Driver "wacom"
MatchDevicePath "/dev/input/event*"
MatchUSBID "5543:0061"
EndSection
And the filepath was nowhere as the main page of this project states
Where what file should be saved depends on what distribution you are running, but in most it is definitely under /etc/
not /usr/
, and furthermore most likely to be at this path: /etc/X11/xorg.conf.d/50-tablet.conf
. You'll need sudo
, then reboot your OS while the USB cable is plugged in. There is some issue if you unplug and plug back in, the whole thing stops working properly (the device is somehow only registered as general mouse but not a graphics tablet device even though wacom
kernel drivers are loaded and xsetwacom list
correctly lists them). So do not unplug it if you plan to use it later; or just reboot again every time you wish to use.
I wrote the report above as a Thank You note to the devs, and if they so desire and if all info provided above is enough, they can add in support to Parblo A640 by default so in newer versions of this package would include config files by default. Thus, some standard system admin tasks and know-hows were assumed, such as how to write a config file for Xorg
and where to put it.
I can't seem to find the xorg.conf.d
folder
Perhaps I'm missing something in order to have anything at that file path, any idea as to what that could be?
I installed the .deb provided here, could it be something that the driver package doesn't include?
Simply create the parent folders whenever necessary for the file path, e.g. to write to the file /etc/X11/xorg.conf.d/50-tablet.conf
, do:
mkdir -p /etc/X11/xorg.conf.d/
gedit /etc/X11/xorg.conf.d/50-tablet.conf
A friend got this, and I wanted to try it out. The pen on the tablet acted as a mouse, but the pressure didn't work in GIMP even after the Input Device was set to Screen and the brush dynamics was set to Pressure Opacity despite
evtest
reported pressure values in entries like this:Tried installing the DIGImend dkms drivers, unloaded the drivers, unplugged the USB cable then reloaded the drivers then plugged back in. No success.
What worked is the simple
Xorg.conf
template on this site (including below to keep the post complete):where
<VID>:<PID>
is the ID fromlsusb
output.The device parameters as reported by
uclogic-probe
were as follows:Thank you so much! I even tried to "decompile" the macOS driver provided by Parblo's website as they didn't, unsurprisingly, provide any driver or instructions for GNU/Linux. Now I can play with this dirty cheap pad.