Skip to content

Instantly share code, notes, and snippets.

View aisuneko's full-sized avatar
😐
attempt to spice up my scheduler with some tasks

aisuneko icecat aisuneko

😐
attempt to spice up my scheduler with some tasks
View GitHub Profile
@aisuneko
aisuneko / flash_all.sh
Created August 10, 2025 13:15
fastboot flashing script for OnePlus 8T OxygenOS 11 stock OTA package
# tested on KB2005_11_C.11
fastboot flash recovery recovery.img
fastboot flash boot boot.img
fastboot flash dtbo dtbo.img
fastboot reboot fastboot
fastboot flash --slot=all recovery recovery.img
fastboot flash --slot=all boot boot.img
fastboot flash --slot=all dtbo dtbo.img
fastboot flash --slot=all abl abl.img
fastboot flash --slot=all aop aop.img
@aisuneko
aisuneko / userChrome.css
Created August 21, 2024 01:58
My Firefox userChrome.css
/*
This is my personal Firefox userChrome setup which 1) complete removes menubar and upper tabbar/titlebar allowing the sole use of Tree Style Tabs; 2) removes sidebar header, while not crashing the UI on Quantum.
Kudos to @LS-KR for the original concept.
*/
#TabsToolbar-customization-target { visibility: collapse !important; }
#main-window[inFullscreen="true"] #sidebar-box,
#main-window[inFullscreen="true"] #sidebar-box + splitter {
visibility: collapse;
}