How to Prevent Firestick From Sleeping

There are many situations where you want to prevent your Firestick from going into sleep mode. Whether you are using an app like Plex or just want the the home screen to be on forever, here is the easiest way to disable automatic sleep mode on your Firestick.

There is no setting anywhere in the Fire TV menus where you can set the device to never sleep. To prevent Firestick from sleeping, you must have the ADB utility connected to the Firestick.

Don’t be too intimidated with these steps. As long as you have a Windows, Mac, or Linux PC, you should be able to perform these steps easily.


1. Connect to Firestick Via ADB

Before proceeding, follow our guide about How to Connect to Firestick Using ADB. This will teach you how to use ADB with your Firestick so that you can issue advanced commands to it. Once you have connected to your Firestick with ADB using adb connect <firestick ip address>, use the steps below to proceed.


2. Disable Auto Sleep on Firestick

  1. Type adb shell then press Enter. This will put you into the shell interface.ADB shell command
  2. Now we can set the sleep_timeout setting to 0. This will tell the Firestick to never sleep. Type this then press Enter:
    settings put secure sleep_timeout 0
    ADB Shell set sleep timeout to zero
  3. To leave shell mode, type exit then press Enter.

That’s it! The Firestick will now never go to sleep.


3. Disable Screensaver on Firestick

Firestick Versions With Screensaver “Never” Setting

  1. Using the menus navigate to Settings > Display & Sounds > Screensaver > Start Time.
  2. Set the Start Time to Never.
    Fire TV Screensaver Never

Versions Without Screensaver “Never” Setting

If you’re using an older version of FireOS, it may not have an option to turn the screensaver completely off. In this case, you can use ADB set it to not turn on for a very long time. How about 2 weeks?

  1. Type adb shell then press Enter. This will put you into the shell interface.
    ADB shell command
  2. Now we can set the screen_off_timeout setting to 604800000 (milliseconds in 2 weeks). This will tell the Firestick to not start the screensaver until 2 weeks of idle time. Type this then press Enter:
    settings put system screen_off_timeout 604800000ADB Shell set screensaver timeout
  3. To leave shell mode, type exit then press Enter.

Note that even after these steps you can still manually put your Firestick into sleep mode, you can still do so manually.

 

I hope this guide has helped you with preventing the Firestick from going into sleep mode automatically. If you need help, drop me a comment below.

10 thoughts on “How to Prevent Firestick From Sleeping”

  1. Hello Mitch – Sorry to bother you, but after a lot of reading and attempts in Terminal on a Mac, I just hit a wall. My goal is to keep the Firestick from sleeping. In Terminal, its always “command not found”. Since the Tutorial uses Windows “Command Prompt”, I’m at an impasse. I am able to connect via ADBLink, and ADBlink2 via both USB and Wireless. ADB debugging is enabled on the stick. Thank you so much for your valuable time. John

    Reply
    • Thanks for the tip! This also works on Firetv as I expected. Especially useful since the Toshiba I have there is no way to adjust the timer. And it locks up whatever app you were using. Note also adb is available for Android devices as I did your instructions from my phone. Kudos!

      Reply
    • you will most likely need to use ./ prior to the adb command. You also need to be in that directory to execute the command. Neat trick on the Mac if you open the folder with the adb app in it you can drag the app to the terminal window and it will fill-in the text for you.

      Reply
  2. I am trying to use ADB to stop my Firestick from turning off the TV.
    After giving the command “adb connect <>” (without quotes) the system
    replies:
    “cannot connect to < because the target machine actively refused it. (100:61)”

    Amazon tech support is clueless and tells me they cannot help with “jail breaking.”
    Any suggestions?

    Reply
    • Phil, I ran into the same issue, you need to change it to developer mode. navigate to Settings > My Fire TV > About, and then keep clicking the device name until you see a “You are now a developer”

      Good luck!!

      Reply
  3. Great Video and thanks for posting! I now have my Firestick where it doesn’t go into sleep mode anymore. My dog is now very happy because he likes to watch TV during the day while I’m at work. Thank you! :)

    Reply
  4. Thank you so much! Stupid Fire TV has been driving me batty turning itself off. Your page is the only place that helped me fix it.

    Forever grateful!

    Reply
  5. Is there a adb download for my android phone or only for a Windows pc? If only for my pc does my computer always need to be on to connect to the firestick or can I uninstall it once I change the setting?

    Reply

Leave a Comment