This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 <[email protected]> | |
# |