Skip to content

Instantly share code, notes, and snippets.

View ColsterJ's full-sized avatar

Colin Jones ColsterJ

View GitHub Profile
@ColsterJ
ColsterJ / mac-tweaks.md
Created April 23, 2022 22:37 — forked from koenbok/mac-tweaks.md
My Favorite Mac Tweaks

Skip verifying disk images

defaults write com.apple.frameworks.diskimages skip-verify true

Always hide the Desktop

defaults write com.apple.finder CreateDesktop false; killall Finder

Make terminal logins fast

touch ~/.hushlogin

Disable most animations

@ColsterJ
ColsterJ / lsappinfo.sh
Created April 23, 2022 18:58 — forked from andrewpetrochenkov/mac-frontmost-app.sh
macOS app frontmost
#!/usr/bin/env bash
{ set +x; } 2>/dev/null
lsappinfo info -only name `lsappinfo front` | awk -F'"' '{print $4}'
lsappinfo info -only pid `lsappinfo front` | awk -F'"=' '{print $2}'
lsappinfo info -only bundlepath `lsappinfo front` | awk -F'"' '{print $4}'
lsappinfo info -only bundleID `lsappinfo front` | awk -F'"' '{print $4}'