Windows 10 Dark Theme Fix + Massive Tweak Pack

Discussion in 'Windows 10' started by ceo54, Mar 31, 2026.

  1. ceo54

    ceo54 MDL Addicted

    Aug 13, 2015
    969
    465
    30
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. shhnedo

    shhnedo MDL Guru

    Mar 20, 2011
    2,078
    2,834
    90
    @ceo54 I tested out the dark theme part. It works. But I think transparency effect needs to be disabled, otherwise task manager has glitched out white elements.

    Edit: nevermind, transparency also works after a restart.
     
  3. ceo54

    ceo54 MDL Addicted

    Aug 13, 2015
    969
    465
    30
    @fabricio simoes
    @shhnedo

    Some elements are controlled by the RGB values in registry. I have included two .reg files to theme those parts properly. Everything works okay on my end with transparency enabled. Not sure what could be wrong on your side.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. shhnedo

    shhnedo MDL Guru

    Mar 20, 2011
    2,078
    2,834
    90
    @ceo54 I'll chalk mine up to a messy windows install(it's my pc at work).
     
  5. fabricio simoes

    fabricio simoes MDL Senior Member

    Dec 17, 2020
    328
    90
    10
    #6 fabricio simoes, Mar 31, 2026
    Last edited: Mar 31, 2026
    Notei esse bug aqui onde o Windows 10 aparece...

    upload_2026-3-31_15-27-38.png
     
  6. fabricio simoes

    fabricio simoes MDL Senior Member

    Dec 17, 2020
    328
    90
    10
    upload_2026-3-31_16-52-7.png

    The bar for typing also doesn't appear, just asking, is that the way it is or is mine wrong?
     
  7. evissing

    evissing MDL Novice

    Aug 21, 2022
    2
    2
    0
    there's a missing closing square bracket in Registry\Diagnosis.reg
     
  8. Opulent_Maelstrom

    Opulent_Maelstrom MDL Member

    Dec 30, 2022
    105
    54
    10
    Same here, you not alone.
     
  9. Opulent_Maelstrom

    Opulent_Maelstrom MDL Member

    Dec 30, 2022
    105
    54
    10
    Same here
    2026-05-05_142101.png
     
  10. Opulent_Maelstrom

    Opulent_Maelstrom MDL Member

    Dec 30, 2022
    105
    54
    10
    These apps look a bit strange:
    SD1.png

    SD2.png

    SD3.png
     
  11. Opulent_Maelstrom

    Opulent_Maelstrom MDL Member

    Dec 30, 2022
    105
    54
    10
    @ceo54
    Question: Do you develop this Dark Theme?
    If so, how to uninstall it...
    TIA
     
  12. ceo54

    ceo54 MDL Addicted

    Aug 13, 2015
    969
    465
    30
    Just change the theme from Control Panel / Settings app and delete the theme files from Windir\Resources\Themes
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. tweakingtheworld

    tweakingtheworld MDL Novice

    Oct 8, 2025
    1
    1
    0
    What is the windows defaults for the "fsutil" command that windows 10 uses? I'm asking about the commands in the NTFS.cmd

    The six options:
    Code:
    :: 1. Disable Last Access Timestamp
    :: Reduces disk writes whenever a file is read.
    fsutil behavior set disablelastaccess 1
    
    :: 2. Disable 8dot3 Name Creation
    :: Stops the creation of legacy short-names (e.g., FILENA~1.TXT).
    fsutil behavior set disable8dot3 1
    
    :: 3. Enable Delete Notify (TRIM)
    :: Ensure this is set to 0. It is vital for SSD health.
    fsutil behavior set disabledeletenotify 0
    
    :: 4. Disable Paging File Encryption
    :: Removes the CPU overhead of encrypting the swap file.
    fsutil behavior set encryptpagingfile 0
    
    :: 5. Disable NTFS Compression
    :: Prevents the kernel from loading compression routines.
    fsutil behavior set disablecompression 1
    
    :: 6. Disable NTFS Encryption (EFS)
    :: Disables the Encrypting File System overhead.
    fsutil behavior set disableencryption 1