Skip to content

Instantly share code, notes, and snippets.

View dlvhdr's full-sized avatar

Dolev Hadar dlvhdr

View GitHub Profile
@dlvhdr
dlvhdr / tokyonight-storm-theme.tape
Last active October 28, 2022 16:41
Tokyonight storm vhs theme (by charmbracelet)
Set Theme { "black": "#1d202f", "red": "#f7768e", "green": "#9ece6a", "yellow": "#e0af68", "blue": "#7aa2f7", "purple": "#bb9af7", "cyan": "#7dcfff", "white": "#a9b1d6", "brightBlack": "#414868", "brightRed": "#f7768e", "brightGreen": "#a6e3a1", "brightYellow": "#e0af68", "brightBlue": "#7aa2f7", "brightPurple": "#bb9af7", "brightCyan": "#7dcfff", "brightWhite": "#c0caf5", "background": "#24283b", "foreground": "#c0caf5", "selectionBackground": "#364a82", "cursorColor": "#c0caf5" }
@dlvhdr
dlvhdr / brew_uninstall.sh
Last active August 6, 2022 19:53
Interactively uninstall brew packages with gum (https://github.com/charmbracelet/gum)
#!/bin/bash
export HOMEBREW_NO_AUTO_UPDATE=1
options=$(\
brew bundle dump --describe --file - | \
grep -E "^(brew|cask|#)" | \
sed -E 's/^(brew|cask) \"(.*)\"(,.*)?/\2/' | \
sed "s/#//" | \
while read -r first;