How to: Fix Synaptics Emulate Middle Click.
[DWORD]HKEY_LOCAL_MACHINE\Software\Synaptics\SynTP\Defaults\HasBothButtonFeature = 1
RMH

Product Placement
2025 on Tumblr: Trends That Defined the Year
Mike Driver
styofa doing anything
art blog(derogatory)
I'd rather be in outer space 🛸
trying on a metaphor
Lint Roller? I Barely Know Her
cherry valley forever

ellievsbear
Game of Thrones Daily
AnasAbdin
h
sheepfilms

JBB: An Artblog!
TVSTRANGERTHINGS
Misplaced Lens Cap

seen from Italy

seen from Singapore

seen from United Kingdom

seen from T1
seen from United States
seen from Italy
seen from United States

seen from Netherlands

seen from Sri Lanka

seen from Australia
seen from United States

seen from France
seen from United States
seen from United States

seen from T1
seen from TĂĽrkiye
seen from United States
seen from United Kingdom
seen from Sweden

seen from Azerbaijan
@worldsayshello
How to: Fix Synaptics Emulate Middle Click.
[DWORD]HKEY_LOCAL_MACHINE\Software\Synaptics\SynTP\Defaults\HasBothButtonFeature = 1

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Remove Win10 “Add to windows media player list” context menu option
Make a text file, name it “remove_wmp_context.reg” or something.
Paste this in to the file:
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\SystemFileAssociations\audio\shell\Enqueue] [-HKEY_CLASSES_ROOT\SystemFileAssociations\audio\shell\Play] [-HKEY_CLASSES_ROOT\SystemFileAssociations\audio\shellex\ContextMenuHandlers]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\Enqueue] [-HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\Play] [-HKEY_CLASSES_ROOT\SystemFileAssociations\video\shellex\ContextMenuHandlers]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Enqueue] [-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shell\Play] [-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Audio\shellex\ContextMenuHandlers]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Image\shell\Enqueue] [-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Image\shell\Play]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Video\shell\Enqueue] [-HKEY_CLASSES_ROOT\SystemFileAssociations\Directory.Video\shell\Play]
Save file and double click it to merge with the registry.
Works for Win10, probably others YMMV.
Change music file associations in Ubuntu 16.40
So you want to change the default application for opening certain file types but the application you want isn’t appearing in ubuntu’s (confusingly named) “Details” application. For some reason it’s just not in the drop-down list as an available music application.
What you can do is in right-click on the file type you want to assign, in my case an mp3 file. Then select “Properties” from the menu.
In the window that appears, click the “Open with” tab along the top of the window. Select the preferred application and then hit the “Set as default” button in the bottom right corner.
Now files of that type should all be opened in by the default app.
If there’s a way to assign all audio files to one application, I haven’t come across it yet. I’ll probably add something here to do with that if I do.
No pressure on Monoprice (UC-Logic) drawing tablet in Linux (Ubuntu 16.10/Kernel 4.8)
There’s been a change in the evdev driver for xorg in the latest ubuntu update that seems to stop monoprice tablets from working correctly.
The effect is that the tablet appears to be working as far as clicking goes but all pressure sensitivity no longer functions. Taps with the pen seem to work fine.. it clicks as it were but can’t draw in krita at all.
After a fair bit of testing with different computers, distros, I came across this incredibly useful guide from the excellent DIGImend project on troubleshooting input issues.
I was getting the pressure reports all the way up until xinput where the pressure value just disappeared. It turns out that it’s a known issue in xserver-xorg-input-evdev as reported here.
So following a suggestion from the poster of the bug report I decided to try downgrading evdev to the previously working version and that seems to bring back the pressure sensitivity.
To remove the current (buggy) version of evdev used synaptic but you could just as easily use apt: sudo apt-get remove xserver-xorg-input-evdev
Getting the older version of evdev is a little more complicated, since it’s not a current version any more it’s no longer held in the current (yakkety) repo so it needs to be downloaded as a .deb package from http://packages.ubuntu.com/xenial/xserver-xorg-input-evdev .
Just download the file you need for the architecture (uname -m to check) that you’re running. In my case (x86_64) I needed the amd64 build so got that.
To install we need to use dpkg via this command: sudo dpkg -i xserver-xorg-input-evdev_2.10.1-1ubuntu2_amd64.deb change the filename to whatever your download is. Hopefully after restarting pressure sensitivity should be working again.
Finally, to stop the system updating to the newer version we need to lock the package. To do this I used Synaptic, find and highlight xserver-xorg-input-evdev and use the [Package] menu to [Lock Version].
Hopefully this might help someone else facing the this issue.