dotfiles/tasks/osx.py

156 lines
4.1 KiB
Python
Raw Normal View History

import os
from invoke import ctask
2014-10-21 12:00:04 -06:00
from . import util
@ctask(default=True)
2014-11-11 16:52:25 -07:00
def setup(ctx):
cl_tools(ctx)
brew(ctx)
cider(ctx)
access_for_assistive_devices(ctx)
hyper(ctx)
locate(ctx)
set_path_for_launchd(ctx)
install_rvm(ctx)
2014-11-10 03:00:46 -07:00
install_powerline_monaco(ctx)
2014-12-15 06:16:35 -07:00
setup_dbus(ctx)
2014-11-19 16:40:02 -07:00
@ctask
def macvim(ctx):
macvim_install = (
"macvim --override-system-vim --custom-system-icons "
"--with-features=huge --enable-rubyinterp --enable-pythoninterp "
"--enable-perlinterp --enable-cscope"
)
ctx.run("brew install {0}".format(macvim_install))
ctx.run("vim +BundleInstall! +q +q")
@ctask
def setup_dbus(ctx):
ctx.run("ln -sfv /usr/local/opt/d-bus/*.plist ~/Library/LaunchAgents")
@ctask
def osx_config(ctx):
2014-10-23 16:42:28 -06:00
ctx.run('sudo {0}'.format(
2014-10-21 12:00:04 -06:00
os.path.join(util.RESOURCES_DIRECTORY, 'osx.sh')
2014-10-23 16:42:28 -06:00
), pty=True)
2014-10-21 12:00:04 -06:00
2014-11-10 01:13:30 -07:00
2014-10-31 18:07:28 -06:00
@ctask
2014-11-11 16:52:25 -07:00
def cider(ctx):
2014-11-10 01:13:30 -07:00
ctx.run('brew install caskroom/cask/brew-cask')
2014-10-31 19:34:49 -06:00
if not util.command_exists('cider'):
ctx.run('sudo pip install cider')
ctx.run('cider restore -i')
2014-10-31 18:07:28 -06:00
@ctask
2014-11-11 16:52:25 -07:00
def brew(ctx):
path = 'https://raw.githubusercontent.com/Homebrew/install/master/install)'
2014-10-21 12:00:04 -06:00
if not util.command_exists('brew'):
2014-11-11 16:52:25 -07:00
ctx.run('ruby -e "$(curl -fsSL {0}'.format(path))
2014-11-10 01:13:30 -07:00
@ctask
2014-11-11 16:52:25 -07:00
def packages(ctx):
ctx.run('brew update')
for package_name in ESSENTIAL + BASICS + SHOULD_INSTALL + MISC:
ctx.run('brew install {0}'.format(package_name))
2014-10-21 12:00:04 -06:00
2014-10-20 21:15:11 -06:00
@ctask
2014-11-11 16:52:25 -07:00
def set_path_for_launchd(ctx):
2014-10-21 12:00:04 -06:00
launch_agent_dir = os.path.expanduser('~/Library/LaunchAgents/')
filename = 'set-path.plist'
source = os.path.join(util.RESOURCES_DIRECTORY, filename)
destination = os.path.join(launch_agent_dir, filename)
if os.path.exists(source) and not os.path.exists(destination):
util.ensure_path_exists(launch_agent_dir)
ctx.run('ln -s {0} {1}'.format(source, destination))
2014-10-20 21:15:11 -06:00
APPS_NEEDING_ASSISTIVE_DEVICE_ACCESS = ('Slate', 'Synergy', 'iTerm')
@ctask
2014-11-11 16:52:25 -07:00
def access_for_assistive_devices(ctx):
for app in APPS_NEEDING_ASSISTIVE_DEVICE_ACCESS:
app_string = '/Applications/{0}.app'.format(app)
user_application = os.path.expanduser('~' + app_string)
2014-11-11 16:52:25 -07:00
access_if_exists(ctx, user_application)
access_if_exists(ctx, app_string)
access_if_exists(
ctx,
2014-11-11 16:52:25 -07:00
"/Applications/Karabiner.app/Contents/Applications/"
"Karabiner_AXNotifier.app"
)
2014-10-24 07:19:23 -06:00
2014-11-11 16:52:25 -07:00
def access_if_exists(ctx, app_string):
2014-10-24 07:19:23 -06:00
if os.path.exists(app_string):
ctx.run(
'zsh -c "source ~/.zshrc && '
'enable_access_for_assistive_devices \"{0}\""'.format(
app_string
)
2014-10-24 07:19:23 -06:00
)
@ctask
2014-11-11 16:52:25 -07:00
def hyper(ctx):
2014-10-24 07:19:23 -06:00
source = '{0}/karabiner-hyper.xml'.format(util.RESOURCES_DIRECTORY)
2014-11-11 16:52:25 -07:00
destination = os.path.expanduser(
"~/Library/Application\\ Support/Karabiner/private.xml"
)
2014-10-24 07:19:23 -06:00
try:
ctx.run("rm {0}".format(destination))
except:
pass
ctx.run("ln -s {0} {1}".format(source, destination))
ctx.run("{0}/karabiner_config.sh".format(util.RESOURCES_DIRECTORY))
2014-11-10 03:00:46 -07:00
@ctask
2014-11-11 16:52:25 -07:00
def locate(ctx):
ctx.run('sudo launchctl load -w '
'/System/Library/LaunchDaemons/com.apple.locate.plist')
2014-11-10 03:00:46 -07:00
@ctask
def install_rvm(ctx):
2014-11-11 16:52:25 -07:00
ctx.run('\\curl -sSL https://get.rvm.io | bash -s stable')
2014-11-10 03:00:46 -07:00
@ctask
2014-11-10 03:00:46 -07:00
def install_powerline_monaco(ctx):
2014-11-11 16:52:25 -07:00
ctx.run('open {0}'.format(
os.path.join(util.RESOURCES_DIRECTORY, "Monaco-Powerline.otf"))
)
2014-11-10 03:00:46 -07:00
@ctask
2014-11-11 16:52:25 -07:00
def cl_tools(ctx):
2014-11-10 03:00:46 -07:00
if not util.command_exists('gcc'):
ctx.run('xcode-select --install')
2014-12-20 02:23:42 -07:00
@ctask
def fix_htop(ctx):
real_htop_location = ctx.run("readlink -f $(brew --prefix htop)").stdout.strip() + "/bin/htop"
ctx.run("chmod 6555 {0}".format(real_htop_location))
ctx.run("sudo chown root {0}".format(real_htop_location))
@ctask
def iTerm(ctx):
library_plist = os.path.join(os.path.expanduser("~"), "Library",
"Preferences", "com.googlecode.iterm2.plist")
ctx.run("defaults write {0} LoadPrefsFromCustomFolder -bool true".format(
library_plist
))
ctx.run("defaults write {0} PrefsCustomFolder -string {1}".format(
library_plist, util.RESOURCES_DIRECTORY
))