Note: This is an update of Will Haley's excellent post to use APFS instead of CoreStorage.
I'll add to Will's warning below that this is a complex process on MacOS because the OS has a lot of assumptions on where things are. I
# -*- coding: utf-8 -*- | |
""" | |
Python Script to download the Chrome Extensions (CRX) file directly from the google chrome web store. | |
Referred from http://chrome-extension-downloader.com/how-does-it-work.php | |
""" | |
from __future__ import division | |
import argparse | |
import requests |
#! /usr/bin/env python3.5 | |
""" | |
Workaround for bug: https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1577197 | |
Run it with python3.5 or higher after pairing/connecting the bluetooth stereo headphone. | |
See `a2dp.py -h` for info. | |
https://gist.github.com/pylover/d68be364adac5f946887b85e6ed6e7ae | |
Vahid Mardani |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Disabled</key> | |
<false/> | |
<key>Label</key> | |
<string>gerbera.io</string> | |
<key>ProgramArguments</key> | |
<array> |
Note: This is an update of Will Haley's excellent post to use APFS instead of CoreStorage.
I'll add to Will's warning below that this is a complex process on MacOS because the OS has a lot of assumptions on where things are. I