This file contains 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
// To run, install GreaseMonkey or TamperMonkey extension in your browser | |
// Copy this code into new user script, and enable | |
// !! If the toggle button is not been toggled automaticly: | |
// !! That means youtube changed for reasons the id of the toggle button again. | |
// !! In Chrome/Firefox: right-click the toggle button and choose "Inspect Element (Q)" | |
// !! You will find something like "<div id="TOGGLE_BUTTON_ID" class="toggle-button...." | |
// !! Copy whatever TOGGLE_BUTTON_ID is and replace down in "function disableAfterLoad()" the place holder named "TOGGLE_BUTTON_ID". | |
// !! Save script ctrl+S and reload youtube page. | |
This file contains 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
#!/bin/bash | |
# Toggle the sensitivity of your Wacom Tablet | |
# BEFORE usage define your DEVICE: | |
# use: xsetwacom --list devices | |
# to find your device | |
# You probably need to adapt the RESET condition for your tablet: | |
# get cour current resolution using: xsetwacom --get "$DEVICE" Area |
This file contains 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
// ==UserScript== | |
// @name darken the web | |
// @version 0.1 | |
// @description Bright Webpages get dimmed down. Its a Dark Mode for poor people! | |
// @author https://github.com/Jakobimatrix with a lot of inspiration from https://chat.openai.com/ and ChatGPT-4 | |
// @match *://*/* | |
// @grant none | |
// @run-at document-idle | |
// ==/UserScript== |