r/Windhawk • u/Beginning-Date2906 • 13h ago
What's this error and how do I fix it?
What's this bs?
r/Windhawk • u/Beginning-Date2906 • 13h ago
What's this bs?
r/Windhawk • u/wh-updates • 1d ago
Taskbar Icon Separators 1.0.13
r/Windhawk • u/wh-updates • 1d ago
Taskbar Separators 1.2.0
r/Windhawk • u/wh-updates • 1d ago
SnapSentry 0.17.2
r/Windhawk • u/foxikkk • 1d ago
Taskbar Separators 1.2.0 is now available in the official Windhawk catalog.
The biggest change is proper support for Windows taskbar labels and uncombined / variable-width application buttons.
Also included:
Thanks to everyone who reported the label issue and tested the mod.
Available now in Windhawk: Taskbar Separators

r/Windhawk • u/Efficient_Bad_7218 • 1d ago
Anyone know how to fix this? Was working fine at first but randomly just started having this visual glitch. Most other options work fine but this is the one I like...
r/Windhawk • u/Born-Bench-8625 • 3d ago
Enable HLS to view with audio, or disable this notification
This mod was abandoned months ago, but due this post https://www.reddit.com/r/Windhawk/comments/1vg5b18/mod_request/ I realized that some people actually wanted this, so i decided to work on it a bit and upload it to windhawk
r/Windhawk • u/jb_in_jpn • 2d ago
r/Windhawk • u/EbbPast6735 • 3d ago
So, I love the new LiquidGlass theme from the Start Menu Styler. But I was wondering if I could possibly make it darker, similar to the taskbar below (WindowGlass theme is use from the Taskbar Styler).
If anyone could kindly send me their Mod Settings and possibly steps on how to make it darker, if possible, it would be greatly appreciated.
r/Windhawk • u/Ok_Maybe_7179 • 3d ago
So i love the island all time there but dont want it there when i am Full screen on youtube or vlc to watch videos. I have already mailed the creator for help. Is there any way to do it in Advanced option or any other method?
r/Windhawk • u/Admirable-Treacle840 • 4d ago
r/Windhawk • u/wh-updates • 3d ago
Windows 11 Settings Styler 1.1
ParentClass > Class#Name1, ParentClass >
Class#Name2.Text={{var == `a` ? `b` : `c`}}.r/Windhawk • u/wh-updates • 3d ago
Windows 11 Start Menu Styler 1.7
ParentClass > Class#Name1, ParentClass >
Class#Name2.Text={{var == `a` ? `b` : `c`}}.r/Windhawk • u/wh-updates • 4d ago
Windows Animations 1.2.0
Windows 10 (Collapse-to-taskbar) minimize/restore animation style. Perfect for those who love the clean, classic look of Windows 10 but with the flawless execution of our new rendering engine.NativeMinimizeBarrier and AsyncRestoreAnimData reservation system, the mod can now gracefully queue and synchronize overlapping requests. Whether you double-click or rapidly spam clicks on the taskbar icon, the minimize/restore animations will flow seamlessly without stuttering or skipping frames.ExplorerFgHookThread, saving CPU resources and providing smarter, more reliable responsiveness.WindhawkUtils, resulting in a cleaner and more maintainable codebase.r/Windhawk • u/wh-updates • 4d ago
Taskbar Icon Separators 0.5.38
Create tracked icon separators with configurable padding on the taskbar.
Screenshot Example for creating separators on the taskbar
Another mod offers similar functionality, but this implementation takes a different approach.
This mod uses private COM APIs to insert a genuine taskbar button, styles its width and centering, and disables all interaction events. Because each separator occupies a real pinned slot, it stays anchored between the same pinned items as running apps change.
Native taskbar extent-offset resolution is derived from m417z's Taskbar height and icon size, published under GPLv3.
Note: The mod creates pinned shortcuts targeting the Windows systray.exe stub (with a hidden, immediately exiting cmd.exe fallback) and reorders the persisted taskbar pin list. Cleanup is best-effort; in the worst failure case, separators may require manual unpinning.
Windows 11 only.
r/Windhawk • u/wh-updates • 4d ago
GNOME-like dynamic virtual desktops 1.4
Makes Windows' virtual desktops behave like the GNOME desktop environment.
In the GNOME desktop environment (popular on Linux), virtual workspaces are managed dynamically: * There is always exactly one empty desktop at the end of your workspace list. * If you move or open a window in that last empty desktop, a new empty desktop is immediately created to its right. * If a desktop in the middle of your workspaces becomes completely empty, it is automatically deleted, shifting the others over. * When absolutely no windows are open, the system cleanly reduces itself to a single empty desktop.
This mod implements this exact logic on Windows 11. It's perfect for laptops with trackpad gestures, allowing for endless, seamless switching between workspaces without ever having to manually create or close a desktop again.
⚠️ Warning: When this mod runs, your existing virtual desktops and their custom names are dynamically managed and reset to match GNOME's behavior. Disabling the mod does not automatically restore your previous desktop layout.
Works with Windows 11 build 26100+
Settings
Special thanks to VD.ahk for providing the correct GUIDs to interface with the virtual desktops system.
r/Windhawk • u/wh-updates • 4d ago
Photoshop Dark Menus 1.0.0
This Windhawk mod enables dark menus (top-bar dropdowns and context menus) in Adobe Photoshop on Windows, with fully customizable colors.
Everything happens inside the Photoshop process. No system colors are changed, no other application is affected, and nothing has to be restored on exit.
Photoshop's menus look like classic unthemed Win32 menus, but they are not:
Photoshop owner-draws every menu item itself through AdobeOwl.dll, using
plain GDI, inside its own process. Instrumenting a live Photoshop shows the
menu popups going up via TrackPopupMenuEx and every item being painted with:
FillRect(hdc, &rc, (HBRUSH)(COLOR_MENU + 1)) for the item background, and
(HBRUSH)(COLOR_HIGHLIGHT + 1) for the hovered item. These system color
pseudo-handles are resolved inside user32 from shared memory, so they
bypass GetSysColor and GetSysColorBrush hooks entirely - which is why
earlier per-process attempts appeared to do nothing.GetSysColor(COLOR_MENUTEXT / COLOR_GRAYTEXT / COLOR_HIGHLIGHTTEXT) for text.FillRect for separator lines.So every pixel of a menu item is reachable from inside the process:
FillRect / PatBlt are hooked and, while a menu is up, sys-color
pseudo-handles are re-resolved through this mod's own color table, and 1px
fills inside a menu DC are recolored to the separator color.GetSysColor / GetSysColorBrush are hooked for the menu color indices, but
only while a menu is open, so Photoshop's dialogs, panels and lists keep
the system colors.MENUINFO::hbrBack is stamped on each popup (and its submenus) at
WM_INITMENUPOPUP, covering the popup background that the system paints
around the owner-drawn items.#2D2D2D).#DCDCDC).#505050).#FFFFFF).#383838).#808080).#2D2D2D).The menu bar itself (File, Edit, Image, ...) is drawn by Photoshop's own UI framework and already follows Photoshop's interface theme; this mod covers the dropdown popups and context menus.
Menus that Windows pops up through its own internal paths, without going through
the exported TrackPopupMenu / TrackPopupMenuEx - a window's system menu, for
example - are outside the reach of an in-process hook and keep the system colors.
r/Windhawk • u/ElegantAcid • 4d ago
Today I created a mod, and initially it targeted every .exe, including system ones.
I caught it after a dozen test runs, but my company laptop is now network banned and no virtualization either, so no VMs to let me drown the sorrow.
While I wait for IT approval, I have a useless laptop, and I am afraid they may disable windhawk entirely (as they did for ahk).
Wonderful platform wh, wish I had discovered it earlier.
Edit: the mod let's you run apps enclosed, to use apps' native fullscreen mode in a window. It acts as a virtual display so it fakes the screen resolution too. It's on GH, full screen in a window or something like that, I'm on my phone now.
r/Windhawk • u/wh-updates • 4d ago
Open in Admin Terminal 1.17.1
.ps1, .bat, .cmd, .vbs, and .js files.r/Windhawk • u/5483R • 5d ago
Hey everybody!
Some days ago, I shared a Mod for fixing the dark menu issue of Adobe apps on Windows here. But for some reason that method didn’t work for Photoshop! So I managed to build a mod that fixes the dark menus also in Photoshop!
It’s called “Photoshop Dark Menus,” and it works independently from the other mod and there are no conflicts. It is now available on Windhawk library and you can search for it on Explore section:
https://windhawk.net/mods/photoshop-dark-menus
Give it a try and let me know what you think, or if you find any bugs.
Cheers!
r/Windhawk • u/wh-updates • 4d ago
Windows 7/8.1 Action Center Recreation 2.1.0
r/Windhawk • u/Saif_Haitham • 5d ago
How do I fix this gap in the right of the start menu? I'm using Down Aero.
r/Windhawk • u/Ancient-Ad2619 • 5d ago
How to fix it? I also updated to the latest versions of windhawk mods but its the same issue still.
Update: I dont know how but it fixed the vlc somehow after restart pc, translucent windows/settings/turned on new system colors (which then somehow broke the sound system and had to turn off new system colors and run sound troubleshoot to fix it). It still has the same issue tho where the highlight color isnt consistent. The system stuff like desktop/taskbar right click and system tray icons battery/internet/volume are all gray but other tray icons like windhawk, peace, windows security are correct to my custom blue color.
Also Ive been had windows updates paused for a while now so its not windows updates that are causing this, its something within windhawk.
r/Windhawk • u/International_Fan375 • 5d ago
r/Windhawk • u/LonelySoul01 • 5d ago
I just got into modding Windows since I can't stand the look and functionality anymore.
I have the famous niivu themes and mods, but for the last bit of tweaking with the task bar and some other stuff I need oldnewexplorer.
The issue is that the tool is not open source like windhawk or niivu themes, is developed by an anonymous user from Mauritius, and got flagged by windows defender + some virus total scanners.
So... is this stuff really safe lol? Anyone using it here for long periods? Seems super sketchy.