Skip to content

Instantly share code, notes, and snippets.

View bjoernalbers's full-sized avatar

Björn Albers bjoernalbers

View GitHub Profile
@bjoernalbers
bjoernalbers / uninstall_native_instruments.sh
Last active June 28, 2023 02:33
Uninstall Native Instruments stuff (i.e. Traktor) from your Mac
#!/bin/sh
# Completely uninstall Native Instruments
#
# WARNING: This will permanently remove all NI stuff. Use at your own risk!
rm -rf "/Applications/Native Instruments"
rm -rf "/Library/Preferences/com.native-instruments".*
rm -rf "/Library/Application Support/Native Instruments"
rm -rf "${HOME}/Library/Preferences/com.native-instruments".*
rm -rf "${HOME}/Library/Application Support/Native Instruments"
@bjoernalbers
bjoernalbers / osx_service.rb
Created September 30, 2016 21:11
osx_service - Ansible module to manage launchd services on Mac OS X
#!/usr/bin/ruby
# WANT_JSON
#
# osx_service - Ansible module to manage launchd services on Mac OS X
#
#
# The MIT License (MIT)
#
# Copyright (c) 2016 Björn Albers <bjoernalbers@gmail.com>
#