Skip to content

Instantly share code, notes, and snippets.

View tonytins's full-sized avatar
📚

Tony Bark tonytins

📚
View GitHub Profile
@tonytins
tonytins / spacehey-macos-dark.css
Created January 6, 2024 22:03
macOS Dark Theme for SpaceHey by Alexis Scobey
/* Note: I, Alexis Scobey, am in no way a professional. */
/* This stylesheet doesn't follow any good practices, and I'm surprised it works at all */
/* I'm also unsure about copyright, so you're using this at your own risk. */
/* If you do use it, and it turns out to be illegal, we should totally be prison buddies though */
/* I'm just kidding, of course. Mostly. */
/* Sets the background image and scaling, as well as the font */
/* Note: it's probably a bad idea long-term to pull this from osxdaily's CDN, but I'm too lazy to mirror it elsewhere. */
body{
background-image: url(https://cdn.osxdaily.com/wp-content/uploads/2020/10/macos-big-sur-wallpaper-2.jpg);
@tonytins
tonytins / zig_tasks.json
Created April 28, 2024 03:28
Zig Tasks
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "zig build",
"type": "shell",
"command": "zig build"
},