The Goal: Stop Wine from opening bright white windows (like the sample browser
or file explorer) in your DAW.
The Secret: Wine 11.0+ has a "White Skin" (called Aero) that sits on top of
everything. Even if you change your settings, that skin stays white. We have
to Peel off the skin (Step 1) so the computer is forced to use your Dark Paint
(Steps 2-5).
---
You will need to use your Linux Terminal.
---
STEP 1: PEEL OFF THE "WHITE SKIN" (THE THEME)
THE LOGIC: Wine 11.0 includes a "Skin" file that forces everything to be
white. By adding .bak (Backup) to the name, the computer "loses" the file and
is forced to use your custom colors instead.
THE ACTION:
1. Open your Terminal.
2. Copy and Paste this line and hit Enter:
1 mv ~/.wine/drive_c/windows/Resources/Themes/Aero/Aero.msstyles
~/.wine/drive_c/windows/Resources/Themes/Aero/Aero.msstyles.bak
(WHAT IT DOES):
Before the command, your folder looked like this:
>
After the command, it looks like this:
>
DISABLED)
---
STEP 2: OPEN THE "BRAIN" (THE REGISTRY)
THE LOGIC: Now that the skin is gone, we tell the computer what dark colors to
use instead. We do this in the Registry Editor.
THE ACTION:
1. In your terminal, type wine regedit and hit Enter.
2. Navigation: On the Left Side, you will see folders. You open them by
clicking the little + or > symbols.
---
STEP 3: CHANGE THE "PAINT" (COLORS)
THE LOGIC: We are changing the background colors from 255 255 255 (Pure White)
to 30 30 30 (Dark Studio Grey).
THE PATH: Navigate on the left to: HKEY_CURRENT_USER > Control Panel > Colors
THE ACTION: Look at the list on the Right Side. Double-click these names and
change the numbers to `30 30 30`:
* Window (The main background)
* Menu (The drop-down lists)
* MenuBar (The bar at the top)
* ButtonFace (The buttons)
* ActiveTitle (The top bar of the window)
Double-click these and change them to `220 220 220` (this is for the text so
you can read it):
* WindowText
* MenuText
(WHAT YOU SHOULD SEE):
When you double-click "Window," the box should look like this:
1 ┌──────────────────────────────────────────┐
2 │ Edit String │
3 ├──────────────────────────────────────────┤
4 │ Value name: Window │
5 │ Value data: 30 30 30 │ <-- (Type this exactly!)
6 └──────────────────────────────────────────┘
---
STEP 4: HIDE THE "WHITE BUG" (ALWAYS SHOW MENUS)
THE LOGIC: There is a 20-year-old bug in Windows. Even if you do everything
else right, the "File/Edit/View" bar often stays bright white. Setting this to
0 hides that specific old bar and uses a modern dark one instead.
THE PATH: HKEY_CURRENT_USER > Software > Microsoft > Windows > CurrentVersion
> Explorer > Advanced
THE ACTION:
1. Look at the list on the Right. If you don't see AlwaysShowMenus:
* Right-click in the empty white space on the right side.
* Choose New > DWORD (32-bit) Value.
* Type exactly: AlwaysShowMenus and hit Enter.
2. Double-click AlwaysShowMenus.
3. Set the "Value Data" to `0`.
(WHAT IT SHOULD LOOK LIKE):
1 Name Type Data
2 AlwaysShowMenus REG_DWORD 0x00000000 (0)
---
STEP 5: COLOR THE BORDERS (DWM)
THE LOGIC: This handles the thick title bar at the very top of the window
(where the 'X' button is).
THE PATH: HKEY_CURRENT_USER > Software > Microsoft > Windows > DWM
THE ACTION:
1. Double-click ColorPrevalence and set it to `1`.
2. Right-click empty space > New > DWORD (32-bit) Value.
3. Name it exactly: AccentColor
4. Double-click AccentColor. Set the "Base" to Hexadecimal and type:
`ff262626`
(WHAT IT SHOULD LOOK LIKE):
1 Name Type Data
2 ColorPrevalence REG_DWORD 0x00000001 (1)
3 AccentColor REG_DWORD 0xff262626 (4280682022)
---
STEP 6: RESTART THE "BRAIN" (THE KICK)
THE LOGIC: Wine keeps its old white settings in its head until you force it to
restart. You have to "kick" it to make it re-read your new dark settings.
THE ACTION:
1. Save your music and close your DAW.
2. In your terminal, paste this and hit Enter:
wineserver -k
---
Heist Successful. Your eyes can finally rest.
* "The text is too dark!" — Go back to Step 3 and change WindowText to 255
255 255 (Pure White).
* "I want my white windows back." — To "Un-Peel" the skin, run this in your
terminal:
1 mv ~/.wine/drive_c/windows/Resources/Themes/Aero/Aero.msstyles.bak
~/.wine/drive_c/windows/Resources/Themes/Aero/Aero.msstyles
* "It didn't work!" — Make sure you closed your DAW and ran the wineserver -k
command. Wine won't update until you do that!
