Skip to content

Instantly share code, notes, and snippets.

View JaxonWright's full-sized avatar

Jaxon Wright JaxonWright

View GitHub Profile
@bogdanRada
bogdanRada / customize-mx-master-ubuntu.md
Created April 17, 2020 09:01 — forked from vukhanhtruong/customize-mx-master-ubuntu.md
Custom keymap for Logitech MX Master 2S mouse on Ubuntu

First, install Solaar to see the battery level on the taskbar

sudo apt-get install solaar

To remap the keys, install

sudo apt-get install xbindkeys xautomation
@JaxonWright
JaxonWright / Tesla Chromium Injected Scrollbar CSS
Last active January 24, 2020 06:00
The CSS for the webkit scrollbar that is injected into every website by the Tesla Chromium browser installed in most Tesla vehicles. Kudos to @rob2d for helping me find this!
<style>
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #ddd; border-radius: 6px; }
::-webkit-scrollbar-thumb { background: #bbb; }
</style>