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/bash | |
| ### no clutter | |
| cd /tmp | |
| ### OpenVPN | |
| # VPN: https://necromuralist.github.io/posts/openvpn-on-ubuntu-1804/ | |
| sudo apt install -y openvpn network-manager-openvpn network-manager-openvpn-gnome | |
| ### Git |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> | |
| <plist version="0.9"> | |
| <dict> | |
| <key>DisplayProductID</key> | |
| <integer>0</integer> | |
| <key>DisplayVendorID</key> | |
| <integer>16652</integer> | |
| <key>IODisplayEDID</key> | |
| <data> |
| #!/bin/bash | |
| ########### | |
| # | |
| # Batch convert DVD Videos with HandBrake CLI | |
| # The script will recursively look for "VIDEO_TS" folders and parse them | |
| # | |
| # Read this to understand: | |
| # https://mattgadient.com/2013/06/12/a-best-settings-guide-for-handbrake-0-9-9/ | |
| # http://www.thewebernets.com/2015/02/28/easiest-best-optimal-settings-for-handbrake-dvd-video-conversion-on-mac-windows-and-linux/ | |
| # |