Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@johnnorro
johnnorro / autokinit.sh
Created January 9, 2019 11:36
Autokinit for Mac
#!/bin/sh -e
autokinitFile=~/Library/LaunchAgents/autokinit.plist
if [ -e "$autokinitFile" ]
then
echo "autokinit service already exists"
cat "$autokinitFile"
read -p "Do you wish to remove it? [yN]: " overwrite
if [ "$overwrite" = "y" ]