- Make sure that USB debugging is enabled.
- Deactivate all bloatware apps.
- List the names of all deactivated packages:
$ adb shell pm list packages -d
import time | |
import multiprocessing as mp | |
import numpy as np | |
import matplotlib | |
matplotlib.use('Agg') | |
import matplotlib.pyplot as plt | |
<resources> | |
<string name="settings" translatable="false">Settings</string> | |
<string name="next" translatable="false">Next</string> | |
<string name="previous" translatable="false">Prev</string> | |
<string name="skip" translatable="false">Skip</string> | |
<string name="faq" translatable="false">FAQ</string> | |
<string name="mac_address" translatable="false">Mac Address:</string> | |
<string name="channel" translatable="false">Channel:</string> |
preface: Posting these online since it sounds like these notes are somewhat interesting based on a few folks I've shared with. These are semi-rough notes that I basically wrote for myself in case I ever needed to revisit this fix, so keep that in mind.
I recently bought an LG ULTRAGEAR monitor secondhand off of a coworker. I really love it and it's been great so far, but I ran into some minor issues with it in Linux. It works great on both Mac and Windows, but on Linux it displays just a black panel until I use the second monitor to go in and reduce the refresh rate down to 60 Hz.
This has worked decent so far but there's some issues:
import configparser | |
import binascii | |
import struct | |
import sys | |
signature = b'IMAGEWTY' | |
header_ver = 0x300 | |
header_size = 96 | |
format_ver = 0x100234 |