Skip to content

Instantly share code, notes, and snippets.

View kartikynwa's full-sized avatar
🛠️
it's happening

kartikynwa

🛠️
it's happening
View GitHub Profile
@zacharyneveu
zacharyneveu / gruvbox.css
Last active November 4, 2020 11:43
Gruvbox colors as css variables
:root {
--gb-dark0_hard :#1d2021;
--gb-dark0 :#282828;
--gb-dark0_soft :#32302f;
--gb-dark1 :#3c3836;
--gb-dark2 :#504945;
--gb-dark3 :#665c54;
--gb-dark4 :#7c6f64;
--gb-dark4_256 :#7c6f64;
--gb-gray_245 :#928374;
@abenson
abenson / etc.sv.fstrim.dotrim
Last active May 9, 2023 22:12
Drive Trim Timer
#!/bin/sh
TIMEFILE=$(dirname $0)/fstrim.timer
LOGFILE=/var/log/fstrim.log
date -u >> $LOGFILE
/usr/bin/fstrim -a -v >> $LOGFILE 2>&1
touch $TIMEFILE