• 3 Posts
  • 476 Comments
Joined 2 years ago
cake
Cake day: June 11th, 2023

help-circle






  • Years ago, I tried giving a homeless guy an unopened chicken sandwich I had just got from Burger King. I got two for the price of one, and I didn’t want to eat the other one because I was already pretty full.

    So I walked out of the restaurant still holding it, thinking I should find a trash can for it. Then a homeless guy came up to me saying he was so hungry. So I thought “well this kills two birds with one stone!” and offered it to him.

    He seemed very unhappy and asked if I had money instead. He took the sandwich begrudgingly. Hmmmmm, it was almost like he was lying about being hungry and actually wanted money to buy drugs or something.

    ETA: Tell an honest story in a post that explicitly asks for similar stories. And people get upset. Okay then.







  • If this was his first go-around I could see some rationale to that idea. But holy shit, has there been a case of collective amnesia among business ‘leaders’?!!

    They knew exactly what they were getting. Because we’ve seen all this before. Usually this is the definition of madness. But in this case it should be the definition of stupidity.

    This same surprised Pikachu shit is going to happen over and over and over again over the next 4+ years. Even right now, the media keep assuming what he says is what he will do. And I have no idea why. He demonstrated in his first term that at least half of what he promises he either backtracks on he doesn’t follow through on. Why they think things will be different this time is beyond me.




  • Yes, I might be able to help. I changed my Onn set top box (which uses Android TV) fairly recently to use FLauncher (or Projectivity, I don’t remember which one I chose in the end), but it kept defaulting back to the default launcher. So I jacked it to change what the detail launcher was. After enabling some options ( developer options, USB debugging, verify apps over USB) on my Onn box, I plugged the box into my computer and then used the adb command line tool to change the default launcher (launcherx).

    I imagine you could do the same to your Android TV. As long as it has a USB port.

    Hope this helps.

    ETA: Here are some more detailed instructions I took when I did this:

    1. On the ONN tv box installer flauncher and/or projectivity launcher via the Google Play store

    2. Make sure developer options is enabled on the ONN tv box (hit okay on Android TV OS build several times)

    3. Look up IPv4 address on the ONN TV box under Settings > System > Status

    4. Go to the new Developer Options menu item on ONN > settings > system, and make sure: a) Enable developer options is set to on b) USB debugging is set to on c) Verify apps over USB is set to on

    5. Download adb platform tools on windows from here: https://developer.android.com/tools/releases/platform-tools8

    6. Plug in usb cable between PC and ONN tv box

    7. On the ONN tv box go to Settings > System > Developer Options and make sure Select USB Configuration is set to MTP (Media Transfer Protocol)

    8. On Windows, open a command line as administrator and go to the adb path

    9. In the command line window on windows type: a) adb start-server b) adb connect [ONN ip address] (Note: it might initially say “failed to authenticate to [ip]”, that’s okay, see the next step)

    10. On the ONN tv box a pop-up window should appear asking to allow access from windows pc IP address, say OK

    11. In the command line window on windows type: adb devices

    12. You should see the device as active on the ip you stated and on port 5555

    13. Next in the terminal window type the following to disable the default ONN tv default launcher and listener: adb shell pm disable-user --user 0 com.google.android.apps.tv.launcherx

    14. Then in the terminal window type: adb shell pm disable-user --user 0 com.google.android.tungsten.setupwraith

    15. On the ONN tv box click the home button. It should now either a) go to the additional launcher you installed or b) prompt you for the home app (if you installed multiple additional launchers) so select the one you want (e.g. FLauncher)

    16. Now when you hit the home button on the ONN tv box it should always take you to the FLauncher launcher, not the default ONN launcher

    Note: If you need to re-enable launcherx, you can use these commands in adb:

    adb shell pm enable --user 0 com.google.android.apps.tv.launcherx

    adb shell pm enable --user 0 com.google.android.tungsten.setupwraith

    My adventures with doing this were based on this post on reddit.