How to put a watch on the RedmiBook 8 desktop: official and alternative methods

Xiaomi RedmiBook 8

Windows 11

Xiaomi

all possible ways

Why is there no default clock on RedmiBook 8? It's Microsoft policy: since Windows 10, the desktop clock widgets have been replaced by the taskbar. However, that doesn't mean you can't return the familiar element. We tested 5 working methods (including hidden features). MIUI+ for laptops) and collected them in one guide - with step-by-step screenshots, warnings about typical errors and comparison of convenience solutions.

If you prefer a minimalist design, or if you want a watch with weather, calendar and animation, you can find a suitable option here. And for those who are afraid of breaking the system, we have separately identified the safest ways (without administrator rights and registry editing).

1. Windows Standard Watch: How to Return to Desktop

The easiest way is to use the built-in Watch and Calendar gadget from the Microsoft Store, which is officially supported by Xiaomi RedmiBook 8 and does not require additional software installation.

Open the Microsoft Store โ†’ Type "Widgets" in the search" โ†’ Select Windows Widgets (from Microsoft Corporation). After installation, click on the widget icon in the taskbar (near the clock) and select "Clock." Drag the widget to the desktop.

  • โœ… Pros: official solution, automatic time update, synchronization with Microsoft account.
  • โŒ Cons: limited customization (only 2 styles), takes up space on the widget panel.
  • โš™๏ธ Feature: only works when connected to the Internet for synchronization.

If the widget is not displayed, check:

  1. Windows Updated to the latest version (Settings) โ†’ Windows Update).
  2. Whether widgets are included in settings: Parameters โ†’ Personalization โ†’ Taskbar โ†’ Widgets.

โš ๏ธ Note: On some builds of Windows 11 LTSC (Business users' stripped-down version) widgets are disabled at the system level. In this case, use the 3-5 methods from this article.

๐Ÿ“Š What type of watch do you prefer on your desktop?
Minimalistic (time only)
Classic (with date)
Digital with stopwatch
Animated (with weather/background)
I don't care.

2. Gadgets of third-party developers: top-3 programme

If you don't like the built-in widgets, look at the specialized programs, we tested dozens of utilities and selected the three most stable and safe for RedmiBook 8:

ProgrammeFeaturesSystem requirementsReference
8GadgetPackReturns gadgets from Windows 7, including watches from 10+ skins, weather support and CPU-monitor.Windows 10/11, .NET Framework 4.8Official website
RainmeterFull customization: from simple watches to futuristic HUD-It requires customization skills.Windows 7โ€“11, 50 MB of free spaceDownload Rainmeter
Desktop ClockLight utility with transparent watch, support for several time zones and alarm clock.Windows 10/11, portable version availableProgramme page

For installation 8GadgetPack (simpler):

  1. Download the installer from the official website.
  2. Launch the file with administrator rights.
  3. After installation in the context menu of the desktop will appear item "Gadgets" - select "Clock".

It's important: 8GadgetPack It can conflict with antivirus software (e.g., Avast blocks it as a "potentially unwanted program.

Download the program from the official website|Disable the antivirus during installation|Launch the installer on behalf of the administrator|Restart the laptop after installation-->

3. Hours in MIUI+: Hidden feature for Xiaomi owners

Few people know, but RedmiBook 8 is pre-installed. MIUI+ โ€” It's an ecosystem solution that syncs with Xiaomi devices, and it lets you display widgets from your smartphone directly to your laptop desktop, including your watch:

Make sure that:

    Instructions for setting:

    1. Open up. MIUI+ on your laptop and log in.
    2. On your smartphone, go to Settings โ†’ Connected devices โ†’ MIUI+.
    3. Activate the option "Show widgets on PC".
    4. On the desktop of the laptop will appear icon MIUI+ โ€” Click on it and select the "Clock" widget".

    โš ๏ธ Attention: Widgets MIUI+ It only works when you're connecting your smartphone to your laptop with Wi-Fi or Bluetooth, and if you're interrupted, the watch will disappear from the screen.

    How to return widgets MIUI+, if they're missing?
    If the watch is Suddenly disappeared, check: 1. Network status: smartphone and laptop must be in the same Wi-Fi network. 2. Background processes: on the smartphone, open "Settings" โ†’ Annexes โ†’ MIUI+" 3 Updates: In the Mi App Store, check the version's relevance MIUI+ If the problem persists, re-install it. MIUI+ on a laptop via Settings โ†’ Annexes โ†’ Xiaomi โ†’ Delete, then download the latest version from the official website.

    4. HTML-Watch: for advanced users

    If you're willing to spend 10 In the minutes of setting, you can create a unique watch with the help of HTML/CSS. This method doesn't require any software installation, and it works even on stripped-down versions of Windows:

    Create a clock.html text file and insert this code:

    <!DOCTYPE html>
    
    
    <html>
    
    
    
    
    <head>
    
    
    
    
    <style>
    
    
    
    
    body { margin: 0; font-family: Arial, sans-serif; }
    
    
    
    
    #clock {
    
    
    
    
    font-size: 48px;
    
    
    
    
    color: #fff;
    
    
    
    
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    
    
    
    
    position: fixed;
    
    
    
    
    bottom: 20px;
    
    
    
    
    right: 20px;
    
    
    
    
    background: rgba(0,0,0,0.3);
    
    
    
    
    padding: 10px 20px;
    
    
    
    
    border-radius: 10px;
    
    
    
    
    }
    
    
    
    
    </style>
    
    
    
    
    </head>
    
    
    
    
    <body>
    
    
    
    
    <div id="clock"></div>
    
    
    
    
    <script>
    
    
    
    
    function updateClock() {
    
    
    
    
    const now = new Date();
    
    
    
    
    document.getElementById('clock').textContent = now.toLocaleTimeString();
    
    
    
    
    }
    
    
    
    
    setInterval(updateClock, 1000);
    
    
    
    
    updateClock();
    
    
    
    
    </script>
    
    
    
    
    </body>
    
    
    
    
    </html>

    Save the file and open it in your browser so that the clock always appears on your desktop:

    1. Press. F11 full-screen.
    2. Turn the browser window (do not close!).
    3. Use Always On Top to secure the window over all windows.

    For customization:

    • ๐ŸŽจ Change font-size, color or background in the section <style>.
    • ๐ŸŒ Add date display: replace now.toLocaleTimeString() with now.toLocaleString().
    • โฑ๏ธ For stopwatch, add setInterval(updateClock, 1000).

    ๐Ÿ’ก

    To automatically start the watch when you turn on your laptop, create a shortcut for clock.html and add it to your autoload folder: C:\Users\Your name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup.

    5.Error Correction: Why the clock doesn't work

    Even when installed correctly, widgets can disappear or show the wrong time, and we've collected some of the most common problems and solutions.

    Problem.Reason.Decision
    The clock is not updatedTime synchronization disabledGo to the settings. โ†’ Time and language โ†’ Date and time and enable automatic synchronization.
    The widget disappears after the rebootThe program is not added to the autobootFor 8GadgetPack: In the settings of gadgets, mark "Run at the start of the system".
    The clock is displayed over all windows.Incorrect Transparency settingsIn the properties of the gadget (right click) select "Always in sight" โ†’ turn off.
    MIUI+ It doesn't connect to a smartphone.An outdated version of the appUpdate. MIUI+ on both devices via the Mi App Store.

    If the clock is not showing the right time despite the synchronization:

    1. Check the time zone: Parameters โ†’ Time and language โ†’ Time zone.
    2. Turn off and turn on time synchronization again.
    3. If the problem persists, enter in the command line (Win) + R โ†’ cmd): w32tm /resync

    โš ๏ธ Attention: On RedmiBook laptops 8 double-loaded Windows/Linux Time may be lost due to differences in time zone processing between the OS. Solution: in Linux, run the timedatectl set-local-rtc command. 1, In Windows, turn off automatic time synchronization.

    ๐Ÿ’ก

    Before installing any widgets, create a system restore point: Start โ†’ This will help to roll back changes if the clock starts to conflict with other programs.

    6. Alternative solutions: clock in the taskbar and lock screen

    If you do not need to place the watch on the desktop, consider two built-in options:

    1. The clock on the taskbar:

    • Right-click on the taskbar โ†’ "Taskbar parameters".
    • Enable the option "Show the clock on all displays" (relevant for multi-monitor settings).
    • Set the time format: Parameters โ†’ Time and language โ†’ Formats.

    The clock on the lock screen:

    • Go to the settings. โ†’ Personalization โ†’ Lock screen.
    • Turn on "Show the clock on the lock screen."
    • Choose the display style (digital or analog).

    These methods do not require additional software installation and do not burden the system, but they are less noticeable than widgets on the desktop.

    Comparison of methods: which one to choose?

    To help determine, we have compiled a comparative table on the key criteria:

    MethodConvenienceCustomizationSystem loadAdmin rights required
    Windows widgetsโ˜…โ˜…โ˜…โ˜…โ˜†โ˜…โ˜…โ˜†โ˜†โ˜†โ˜…โ˜†โ˜†โ˜†โ˜†No.
    8GadgetPackโ˜…โ˜…โ˜…โ˜…โ˜†โ˜…โ˜…โ˜…โ˜…โ˜†โ˜…โ˜…โ˜†โ˜†โ˜†Yes.
    Rainmeterโ˜…โ˜…โ˜†โ˜†โ˜†โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜†โ˜†No.
    MIUI+โ˜…โ˜…โ˜…โ˜†โ˜†โ˜…โ˜…โ˜†โ˜†โ˜†โ˜…โ˜†โ˜†โ˜†โ˜†No.
    HTML-clockworkโ˜…โ˜†โ˜†โ˜†โ˜†โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜…โ˜†โ˜†โ˜†No.

    Selection recommendations:

    • ๐Ÿ† For most users: 8GadgetPack โ€” balance of convenience and functionality.
    • ๐ŸŽจ For designers: Rainmeter (takes time to set up).
    • ๐Ÿ“ฑ For owners of smartphones Xiaomi: MIUI+ (if you don't need customization).
    • ๐Ÿ’ป For minimalists: standard Windows widgets or clocks on the taskbar.

    FAQ: Frequent questions

    Can I install a clock on my desktop without administrator rights?
    Yes, use: Standard Windows widgets (method 1). HTML-clock (method 4) โ€“ just save the file and open it in the browser. MIUI+ (Method 3 - does not require the rights of the administrator. 8GadgetPack Rainmeter requires administrator rights to install.
    Why the clock is in MIUI+ Show time 3 hours late?
    This is a typical problem when the time zones on a smartphone and a laptop are not matched. Solution: On a smartphone: Settings โ†’ Additionally. โ†’ Date and time โ†’ Turn on automatic time zone determination. On your laptop: Parameters โ†’ Time and language โ†’ Time zone โ†’ You can manually select your region. Reboot both devices. If the problem persists, turn off the time sync on your laptop, set the time manually, and turn on the sync again.
    How to make the watch transparent so that it does not interfere with wallpaper?
    Methods depending on method: 8GadgetPack: Right-click on the gadget โ†’ "Transparency" โ†’ Rainmeter: In the skin file (.ini) change the Background setting= background=0.0.0.100 (last number is transparency). HTML-In the code, change background: rgba(0,0,0,0.3) - the last value (0.3) is responsible for transparency (0 - fully transparent).
    Can I add a watch with weather, like on Xiaomi smartphones?
    Yeah, that's fine: 8GadgetPack โ€” In the collection of gadgets there is a widget "Weather". + Rainmeter โ€” download a skin with the weather (for example, Enigma or Elegance 2), Desktop Weather program combines the clock and the weather forecast in one widget).
    How to remove the set clock if it is no longer needed?
    Remove Instructions: Windows Widgets: Right-click on the widget โ†’ "Delete". 8GadgetPack: Run the program. โ†’ click "Delete all gadgets" or delete a specific widget through the context menu. Rainmeter: Close the program through the icon in tray or delete the folder with the skin (C:\Users\Your name\Documents\Rainmeter\Skins). HTML-Close the browser window or delete the clock.html file. MIUI+: Turn off the option "Show widgets on PC" in the smartphone settings.