update osx conf stuff.

This commit is contained in:
Ivan Malison 2014-11-10 02:00:46 -08:00
parent 664a3023ac
commit e80986c5fb

View File

@ -12,7 +12,9 @@ def all(ctx):
cider_install(ctx) cider_install(ctx)
enable_access_for_assistive_devices(ctx) enable_access_for_assistive_devices(ctx)
enable_hyper(ctx) enable_hyper(ctx)
enable_locate(ctx)
install_rvm(ctx) install_rvm(ctx)
install_powerline_monaco(ctx)
osx_config(ctx) osx_config(ctx)
@ -135,15 +137,23 @@ def enable_hyper(ctx):
ctx.run("ln -s {0} {1}".format(source, destination)) ctx.run("ln -s {0} {1}".format(source, destination))
ctx.run("{0}/karabiner_config.sh".format(util.RESOURCES_DIRECTORY)) ctx.run("{0}/karabiner_config.sh".format(util.RESOURCES_DIRECTORY))
@ctask @ctask
def get_command_line_tools(ctx): def enable_locate(ctx):
if not util.command_exists('gcc'): ctx.run('sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist')
ctx.run('xcode-select --install')
@ctask @ctask
def install_rvm(ctx): def install_rvm(ctx):
ctx.run('\curl -sSL https://get.rvm.io | bash -s stable') ctx.run('\curl -sSL https://get.rvm.io | bash -s stable')
@ctask @ctask
def enable_locate(ctx): def install_powerline_monaco(ctx):
ctx.run('sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist') ctx.run('open {0}'.format(os.path.join(util.RESOURCES_DIRECTORY, "Monaco-Powerline.otf")))
@ctask
def get_command_line_tools(ctx):
if not util.command_exists('gcc'):
ctx.run('xcode-select --install')