Skip to content

Instantly share code, notes, and snippets.

@dakhnod
dakhnod / script.js
Created July 6, 2023 02:17
Remove GMail trash category
// have a granddad that without any reason deletes his emails from the trashbin, wiping them forever?
// this greasemonkey script hides the trashbin alltogether in gmail.
// ==UserScript==
// @name Remove trash icon from GMail
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove trash icon from GMail UI
// @author dakhnod
// @match https://mail.google.com/mail/u/0/
@dakhnod
dakhnod / rgb.py
Created October 3, 2022 10:17
PS4-Controller-led-RGB
import sys
import time
import math
import atexit
import random
file_blue = '/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-3/1-3:1.3/0003:054C:09CC.000E/leds/0003:054C:09CC.000E:blue/brightness'
file_red = '/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-3/1-3:1.3/0003:054C:09CC.000E/leds/0003:054C:09CC.000E:red/brightness'
file_green = '/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-3/1-3:1.3/0003:054C:09CC.000E/leds/0003:054C:09CC.000E:green/brightness'