This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Find vendor and product id of the device using cat /proc/bus/input/devices - In the output try to find your touchscreen device and use its Vendor=<VendorID> Product=<ProductID> value to create an udev rule. | |
Create a file /etc/udev/rules.d/70-no-touchscreen.conf with the following content (replace VendorID and ProductID with according values): | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="VendorID", ATTRS{idProduct}=="ProductID", ATTR{authorized}="0" | |
You can restart after that or reload rules: udevadm control --reload-rules && udevadm trigger |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Define o tema do VSCode | |
"workbench.colorTheme": "Shades of Purple", | |
// Configura tamanho e família da fonte | |
"editor.fontSize": 18, | |
"editor.lineHeight": 24, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"explorer.compactFolders": false, |