跳至主要内容

Fire TV

Fire TV faq and some tips.

警告

以下步驟僅在 Fire TV Stick 4K Max - 1st Gen (2021) & Fire OS 7 版本測試及使用。且不保證所有硬體皆相容該設定,請自行評估相關操作的硬體損壞風險。

Home screen replacement

更換掉預設的首頁,改用別的 Launcher

Requirement

  • 操作 ADB 環境
  • 開啟 Fire TV ADB, Home -> Settings (Gear icon) -> My Fire TV -> Developer options -> ADB debugging (Set to On)
  • 在 Amazon appstore 搜尋並安裝 Downloader (by AFTVnews.com) 應用程式

Step

  1. 開啟 Downloader App 輸入 632067 下載 Launcher Manager (Mini) apk 並安裝

  2. 透過 ADB 連線到 Fire TV

  3. 依序輸入下列指令

adb shell pm grant com.wolf.minilm android.permission.SYSTEM_ALERT_WINDOW
adb shell pm grant com.wolf.minilm android.permission.READ_LOGS
adb shell dumpsys deviceidle whitelist +com.wolf.minilm
  1. 開啟 Launcher Manager (Mini) 選擇你想使用的 Launcher

Reference

Sleep or Screensaver times

自訂進入螢幕保護及休眠的時間,因為進入螢幕保護的時間預設只提供 5, 10, 15 分鐘的選項;沒有任何選項可以修改進入休眠的時間

Requirement

  • 操作 ADB 環境

Step

  1. 透過 ADB 連線到 Fire TV

  2. 輸入下列指令設定進入睡眠的時間,並確認設定是否生效($times 替換為欲設定的時間,單位為毫秒,預設值為 1200000

adb shell settings put secure sleep_timeout $times
adb shell settings get secure sleep_timeout
  1. 輸入下列指令設定進入螢幕保護的時間,並確認設定是否生效($times 替換為欲設定的時間,單位為毫秒,預設值為 300000
adb shell settings put secure screen_off_timeout $times
adb shell settings get secure screen_off_timeout

Reference