Skip to content

Instantly share code, notes, and snippets.

@0xBADC0FFEE
0xBADC0FFEE / brewlist.sh
Last active June 9, 2025 08:51
Homebrew packages tree of deps
brewlist () {
if tput setaf 1 &> /dev/null
then
reset=$(tput sgr0)
blue=$(tput setaf 33)
else
reset="\e[0m"
blue="\e[1;34m"
fi
brew leaves | while read bfile
@0xBADC0FFEE
0xBADC0FFEE / Info.plist
Last active May 20, 2020 20:47 — forked from mfilej/Info.plist
Make Safari open links from other applications in current space
<key>CFBundleIdentifier</key>
<string>com.apple.AppleScript.SafariURLHelper</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>SafariURLHelper</string>
<key>CFBundleURLSchemes</key>
<array>
<string>http</string>