-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: gnome wacom configuration #26
base: master
Are you sure you want to change the base?
feat: gnome wacom configuration #26
Conversation
…nome-control-center/ubuntu. 'pen' in the name was apparently important
e8976bd
to
6a7251f
Compare
I can rebase this to drop the merge commit if it's desired. |
Let's auto install the config on startup. Something like this would go inside from pathlib import Path
import shutil
libwacom = Path('/usr/share/libwacom')
config = Path(__file__).joinpath('remarkable.tablet')
dest_config = libwacom.joinpath('remarkable.tablet')
if libwacom.exists() and not dest_config.exists():
shutil.copy(config, dest_config) You'll need to adjust |
Rewriting my comment after re-reading your comment: Isn't it a bit odd to copy the file on start rather that copy on install? Any thought's on those items before I implement the install step? |
I've asked this question when installing config files for other CLI programs I've written and the advice I've always gotten is to install these files at runtime.
As long as you do it in a responsible way, it should be fine. Just check if the file already exists.
I would say no.
I say keep things simple for the user. |
I can merge this as soon as the changes are implemented. |
I haven't had time to address the PR comments unfortunately. I'll put it in my queue of things I might do this weekend, but I don't know how likely it is. |
|
I am curious if it's possible to capture the buttons to use them for the stylus button one and two, as that's the only feature really missing for me. |
Might be possible, though that should go in a separate issue. |
Height=8 | ||
IntegratedIn= | ||
#Layout= | ||
Styli= #FIXME |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Styli
should be set to 0xffffe;0xffffff;
.
See here.
I would argue that the keyword here is config, but |
Get remarkable mouse to work with the normal wacom tablet settings in gnome control center