Set default web browser via command line?

I found this tool. After installing it, you can do this: defaultbrowser chrome Here’s the entire source-code in case the link 404s in the future. It is licensed under the MIT license with Copyright (c) 2014 Margus Kerma. #import <Foundation/Foundation.h> #import <ApplicationServices/ApplicationServices.h> NSString* app_name_from_bundle_id(NSString *app_bundle_id) { return [[app_bundle_id componentsSeparatedByString:@”.”] lastObject]; } NSMutableDictionary* get_http_handlers() { NSArray … Read more