I have used it for my Sony 65W855C Android TV. I can confirm the TV is still fully functional.
So far I have not switched the launcher.
I am still looking for ADB command to limit background process.
#!/bin/zsh | |
# CREDITS: Original idea and script disable.sh by pwnsdx https://gist.github.com/pwnsdx/d87b034c4c0210b988040ad2f85a68d3 | |
# Big Sur revision by b0gdanw https://gist.github.com/b0gdanw/40d000342dd1ba4d892ad0bdf03ae6ea | |
# TEMPORARILY disabling (e.g. STOPPING via 'bootout') unwanted services on macOS 11 Big Sur and macOS 12 Monterey: | |
# This version is for a special boot that optimizes for real-time music performance and streaming video. | |
# Due to the read-only system volume introduced with macOS Catalina, this script can NOT be run in Recovery mode's Terminal. | |
# For my purposes I leave WiFi enabled, for streaming video to a local router with no internet connection. |
#!/bin/zsh | |
#Credit: Original idea and script disable.sh by pwnsdx https://gist.github.com/pwnsdx/d87b034c4c0210b988040ad2f85a68d3 | |
#Disabling unwanted services on macOS 11 Big Sur (11) and macOS Monterey (12) | |
#Disabling SIP is required ("csrutil disable" from Terminal in Recovery) | |
#Modifications are written in /private/var/db/com.apple.xpc.launchd/ disabled.plist and disabled.501.plist | |
# user | |
TODISABLE=() |
# For those who does not care iCloud and stock mac Applications | |
# As well as stopping Spotlight completley | |
# tested on bigsur (Intel and M ) | |
#!/bin/bash | |
# Reboot your Mac into Recovery Mode | |
# Terminal from top menu | |
# csrutil disable | |
# csrutil authenticated-root disable |
This list was auto-generated on macOS 10.15 (Catalina) using a script that did the following:
.plist
files located in the 5 folders used by launchctl
:~/Library/LaunchAgents
Per-user agents provided by the user./Library/LaunchAgents
Per-user agents provided by the administrator./Library/LaunchDaemons
System wide daemons provided by the administrator./System/Library/LaunchAgents
OS X Per-user agents./System/Library/LaunchDaemons
OS X System wide daemons.The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.[ | |
{ "caption": "Developer: Open API Files", "command": "open_api_files" }, | |
] |
3.8 |
https://discord.com/channels/280102180189634562/280157067396775936/736233105295278120 | |
keyword: | |
keyword | |
storage.modifier | |
storage.type | |
keyword.declaration | |
variable.language | |
constant.language | |
type: |
#!/usr/bin/env zsh | |
#=========================================================================== | |
# * INFO | |
# | |
# macOS Preferences Defaults | |
# By Christopher Allen @ChristopherA https://github.com/christophera/ | |
# My most basic macOS preferences, in this gist to make it easy to load on | |
# multiple machines and VMs. Ideally runs on all macOS versions since Yosemite, |