Skip to content

Instantly share code, notes, and snippets.

View atais's full-sized avatar

Michał atais

View GitHub Profile
@atais
atais / README.md
Last active July 22, 2025 20:39
Sony Android TV De-bloat

Sony Android TV De-bloat

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.

To do

I am still looking for ADB command to limit background process.

@atais
atais / ubuntu_install.sh
Last active February 27, 2021 20:55
my apps, backup for clean install
#!/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
@atais
atais / DisplayProductID-0
Last active November 25, 2020 18:46
Mac OS inverted colours problem
<?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>
@atais
atais / handbrake.sh
Created July 10, 2017 20:21
Batch convert DVD videos (with VIDEO_TS folder) to MKV using HandBrake CLI
#!/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/
#