Skip to content

Instantly share code, notes, and snippets.

View bmike's full-sized avatar

Mike Bradshaw bmike

View GitHub Profile
@bmike
bmike / gist:11321869
Created April 26, 2014 14:42
backupd ?
find -s / ! ( -fstype hfs -or -fstype ufs ) -prune -or -path /private/tmp -prune -or -path /private/var/folders -prune -or -path /private/var/tmp -prune -or -path */Backups.backupdb -prune -or -print
@bmike
bmike / ffm_snippets.txt
Created May 8, 2012 19:36
Focus follows mouse for X11 and Terminal.app on OSX
# Enable “focus follows mouse” for Terminal.app and all X11 apps
# This means you can hover over a window and start typing in it without clicking first
# from https://github.com/mathiasbynens/dotfiles/commit/fb16c911a40b8467efb3634d906e316893937d31
defaults write com.apple.terminal FocusFollowsMouse -bool true
defaults write org.x.X11 wm_ffm -bool true