Skip to content

Instantly share code, notes, and snippets.

View theodric's full-sized avatar
🎯
Shoobydoowop

þēodrīċ theodric

🎯
Shoobydoowop
View GitHub Profile
@theodric
theodric / kernelconfig.io-dark-mode.js
Created March 22, 2025 16:59
A Violenmonkey dark mode userstyle for kernelconfig.io
// ==UserScript==
// @name kernelconfig.io Dark Mode v2
// @namespace Curses!
// @version 1.2
// @description kernelconfig.io dark mode userstyle
// @author Theodric + Cursor
// @match https://www.kernelconfig.io/*
// @grant GM_addStyle
// ==/UserScript==
@theodric
theodric / kbd-backlight.service
Created April 13, 2025 18:15
systemd service file to crank 2015 MacBook Air's keyboard backlight to the max during system bringup
[Unit]
Description=set MacBook Air keyboard backlight brightness to max on boot
After=multi-user.target
[Service]
Type=oneshot
ExecStart=/bin/sh -c 'echo 255 > /sys/devices/platform/applesmc.768/leds/smc::kbd_backlight/brightness'
RemainAfterExit=true
[Install]
@theodric
theodric / nuke-residual.sh
Created May 9, 2025 10:07
Gets rid of all leftover unattached package cruft
#!/bin/bash
apt-get -yf remove --purge $(dpkg -l | awk '/^rc/{print $2}')