Skip to content

Instantly share code, notes, and snippets.

View freddy1h's full-sized avatar
💭
RB4LIFE

Freddy Hernandez freddy1h

💭
RB4LIFE
  • Red Bull Media House
View GitHub Profile
@freddy1h
freddy1h / .zshrc
Last active May 5, 2025 19:07
ZShell RC
# Open a Swift Package in the current directory
alias opk='open Package.swift'
# Open an Xcode project in the current directory
openproj() {
local proj
proj=$(find . -maxdepth 1 -name "*.xcodeproj" | head -n 1)
if [[ -n "$proj" ]]; then
open "$proj"
else