Skip to content

Instantly share code, notes, and snippets.

View christofluethi's full-sized avatar

Christof Lüthi christofluethi

View GitHub Profile
@christofluethi
christofluethi / osx_toolset.md
Last active February 6, 2020 11:11
Mac OS X ToolSet
@christofluethi
christofluethi / bashrc
Last active January 5, 2019 00:08
BASH RC Configuration
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
HISTFILESIZE=2500
# don't put duplicate lines in the history. See bash(1) for more options
@christofluethi
christofluethi / gist:646ae60d797a46a706a5
Last active April 1, 2024 22:10
Convert m4a to mp3 on OS X command line using ffmpeg
brew update
brew link yasm
brew link x264
brew link lame
brew link xvid
brew install ffmpeg
ffmpeg wiki:
https://trac.ffmpeg.org/wiki/Encode/MP3
@christofluethi
christofluethi / mute-off.sh
Last active August 29, 2015 14:01
Mute Audio for Mac OS X Mavericks / Yosemite
#Check if any hooks already exist (these will be overwritten)
sudo defaults read com.apple.loginwindow LoginHook
sudo defaults read com.apple.loginwindow LogoutHook
#Add hooks for muting
sudo defaults write com.apple.loginwindow LogoutHook /Library/Scripts/mute-on.sh
sudo defaults write com.apple.loginwindow LoginHook /Library/Scripts/mute-off.sh