Skip to content

thomasleplus/macosx

Repository files navigation

macOS

Useful tidbits for macOS

This is my usual Emacs configuration file. Most options are commented with a short explanation.

I use this very simple AppleScript to export my Evernote notes nightly before my computer backs itself up. It is a source file but you can use Script Editor to turn it into an executable script.

This script applies sed commands to all my notes' titles. You should use the osascript command to invoke this script from the command line.

This plist file can be used to mount all your favorited TrueCrypt images on login. Simply put that file in your ~/Library/LaunchAgents/ folder and then load it using the following command:

$ launchctl load ~/Library/LaunchAgents/org.truecrypt.auto-mount-favorites.plist

The kernel extensions of VirtualBox and macFUSE / OSXFuse sometimes conflict with each other. This script allows you to choose which one you want to run using the following commands:

$ kext-swtich fuse $ kext-swtich vbox $ kext-swtich status

Shamelessly inspired of osxfuse/osxfuse#315 (comment)