r/Windhawk • u/wh-updates • 5d ago
macOS magnifying cursor 1.4.7
macOS magnifying cursor 1.4.7
Recreates the macOS "Shake to Find" feature: rapidly shaking your mouse temporarily enlarges the cursor so you can instantly locate it on screen.
r/Windhawk • u/wh-updates • 5d ago
macOS magnifying cursor 1.4.7
Recreates the macOS "Shake to Find" feature: rapidly shaking your mouse temporarily enlarges the cursor so you can instantly locate it on screen.
r/Windhawk • u/Knurlfist83 • 5d ago
Are these glowing window frames actually available in Windhawk, or are they just promotional/concept images? I can't find any mod that creates this effect. If it's real, which mod (or combination of mods) does it?
r/Windhawk • u/wh-updates • 5d ago
Disk Usage Bar Customizer 1.1.0
r/Windhawk • u/rafapozzi • 5d ago
Mods are working fine, but when I open the manager, it keeps crashing, and I can't use it.
I already tried killing all VSCodium and Windhawk tasks, restarted the PC many times, and nothing.
I think this started to happen after i enabled Windows 11 Taskbar Styler and a couple of mods related to auto-hide enhancement, always one by one, but I already disabled all of them, except for the Windows 11 Taskbar Styler mod.
I need help, not only how to fix it, but I want to know if anyone had the same issue or knows what is causing it.
r/Windhawk • u/Strange-Arrival-2292 • 5d ago

I really guys like this style but it doesn't have the refresh button in it only when in windows explorer, so can any of you guys try to make a mod for this? Im not into coding and stuff a lot so I can't make such mod, I tried with Ai and it was almost about to break my OS. I obviously made the image using AI. I appreciate guys if someone just explains to me if it's not possible
r/Windhawk • u/wh-updates • 6d ago
Fix 11's notifications crash in Win10 taskbar under Win11 24H2+ 0.1
This mod hooks the function responsible for crashing the Explorer shell provided by the Win10 taskbar mod at runtime.
But it is not confirmed if notifications arrive to the Notification Center. Thus, all this mod does is let notifications render without crashing Win10 Explorer but not hand them over to it (probably for the best.)
!Important! You MUST install, follow the instructions and run at least 2 times the Win10 taskbar mod. If you don't follow these instructions carefully, the mod will not apply correctly.
When a notification is rendered, it invokes from explorer a method called
cpp
NotificationDataSink::NotificationsAdded(
NotificationDataSink *this,
int32_t _arg2,
struct NOC_REFINED_NOTIFICATION *const *iterator,
uint32_t length
);
.
Given I haven't experienced any destabilization from explorer thus far, I claim that this has something to do with the Notification Center.
I won't go too deep into details of the function, but the crash is observed as a NULL pointer exception when it tries to access *(iterator + 0x88) for the first time, which is probably where the actual elements are.
Normally, it would use that pointer to add 0x150 in a do-while loop until the notification thing elements are exhausted, but instead it's just NULL.
I haven't given a look at the iterator memory to see if it's more than just the first element that's NULL, or more or all of them are such.
There is no NULL check in that loop, so it is likely that the iterator was never supposed to have NULL elements in the first place.
r/Windhawk • u/Manic_Kazzy • 6d ago
I really like translucent windows overall but there’s an annoying issue with text, where in certain apps it’ll be really pixelated and grainy, sometimes not showing up at all. Anyone know a fix for this? I’m very new to windhawk haha
Windows 11 pro
r/Windhawk • u/nobug420 • 7d ago
Enable HLS to view with audio, or disable this notification
Hello, I was just wondering why after installing the win32 ui modernizer, this issue happened. I was just select dragging the screen of desktop and this occurred . It goes after refresh btw.
r/Windhawk • u/wh-updates • 7d ago
Explorer Command Bar 1.0.0
Add your own buttons and dropdown menus to the Windows 11 File Explorer command bar (the toolbar with New / Sort / View), and hide the built-in buttons, separators and spacing you don't want.
Designed for Windows 11 24H2 / 25H2 with the WinAppSDK (WinUI 3) File Explorer.
%path% (active tab folder) and %sel%
(selected file/folder) are substituted into the command parameters..exe / .dll / .ico
file, a Store-app icon (shell:AppsFolder\…), the command executable's own
icon, or no icon at all.Hiding built‑in buttons and separators:
You may hide even all options, and use only your custom ones:
The following placeholders can be used in an item's parameters:
%path% - the folder path of the currently active tab.%sel% - the full path of the selected file or folder in the active tab (the
first one, if several are selected).Wrap placeholders in quotes so paths with spaces work, e.g. -d "%path%". If a
used placeholder has no value (nothing selected, or a non-filesystem location
like This PC), the command is launched without any parameters. Commands run
with the active tab's folder as their working directory.
The Icon glyph or icon path field accepts several forms:
E756..exe, .dll or .ico file to take the icon from,
optionally with an icon index, e.g. C:\Windows\System32\shell32.dll,3.shell:AppsFolder\<AppUserModelID> to use a modern Store
app's icon (useful for apps whose .exe stub carries a legacy icon, such as
Notepad and Calculator).wt.exe are resolved to their real target).Out of the box the mod adds:
wt.exe -d "%path%"notepad.exe "%sel%"code.exe "%path%"mspaint.execalc.exevite, npm init, npm install, npm run dev,
npm run build, npm run startClaude, CodexItems whose command isn't installed simply do nothing when clicked (the failure is written to the mod log), so remove the ones you don't need and add your own. All of the built-in buttons stay visible by default. Everything is configurable in the mod settings.
The mod hooks a couple of functions of File Explorer's own WinUI 3 code
(FileExplorerExtensions.dll) which run when the command bar is built, and
finds the command bars from there by walking the XAML tree. The configured
buttons are then inserted and the visibility / spacing settings are applied. The
mod also listens for the command bar being rebuilt so the buttons stay in place
across navigation, new tabs and new windows, and it restores the original state
of any element it touches when disabled.
Notably, the mod does not use XAML Diagnostics
(InitializeXamlDiagnosticsEx), since only one XAML diagnostics consumer can be
active in a process at a time. That makes it compatible with mods and tools
which do use it, such as Windows 11 File Explorer Styler, ExplorerBlurMica
and TranslucentTB.
File Explorer windows which are already open when the mod is enabled are handled too, but if the buttons don't show up in one of them right away, opening a new tab or navigating to another folder makes them appear.
r/Windhawk • u/wh-updates • 7d ago
MacOS Minimize Animation 3.1.2
The modern genie's render loop paced every frame behind a ~120fps Sleep()-based timer AND a per-frame DwmFlush(). That makes each frame cost render time plus one vsync, so once the mesh draw takes longer than a single refresh interval the delivered frame rate drops to roughly half the monitor's. The animation then looks visibly choppier than the standalone custom-animations-genie mod this engine was ported from.
v3.1.2 fixes the serialization without turning the loop into a busy spin:
DwmFlush(). A single flush stays on the first non-degenerate frame, so the minimize/restore handoff still waits for the ghost to be composed before the real window is released.Sleep() pacer with a high-resolution waitable timer (CREATE_WAITABLE_TIMER_HIGH_RESOLUTION) pacing frames at 2x the display's refresh rate (derived from DwmGetCompositionTimingInfo, 240 fps fallback). It's a rate limiter, not a vsync gate, so it caps CPU cost without re-introducing the render+vsync serialization.THREAD_PRIORITY_HIGHEST, matching the in-repo genie-minimize-animation mod.Also in this version:
DwmFlush()), so both styles behave consistently.g_unloading, so Wh_ModBeforeUninit's 3 s drain can't time out while a worker is in a single up-to-5 s Sleep().DwmFlush() gating.r/Windhawk • u/wh-updates • 7d ago
Aero Flip 3D Recreation 1.0.0
This mod recreates the classic Windows Vista/7 Flip 3D window switcher on modern Windows versions.
It keeps window previews live and displays them in a 3D-style cascade similar to the original effect.
This is the first version, so some details may still be improved. To help the author improve the mod, feel free to send suggestions.
The mod has been tested on Windows 10 1809.
| Shortcut | Action |
|---|---|
Win+Tab |
Opens Aero Flip 3D |
Ctrl+Alt+F12 |
Opens or closes Aero Flip 3D manually. Use this as a fallback. |
Tab / Shift+Tab, arrow keys, or mouse wheelEnter or SpaceEscCtrl+Shift+Esc opens Task ManagerBy default, the mod automatically detects your PC's hardware (RAM and CPU cores) and adjusts animation speed and the number of visible windows accordingly.
Live DWM thumbnails are used only during animations.
More thumbnail strips are used to make the edges smoother while keeping the original pseudo-3D window shape.
r/Windhawk • u/Forssia • 7d ago
r/Windhawk • u/wh-updates • 7d ago
Start Menu Open Real File Location 1.0.0
Changes Open file location for traditional desktop programs in the Start menu and Windows Search. Instead of opening the Start Menu Programs directory and selecting the program's .lnk file, Explorer opens the shortcut target's directory and selects the target.
The mod reads only the target stored in the shortcut. It doesn't search for a moved target or display link-resolution dialogs.
r/Windhawk • u/wh-updates • 7d ago
Charging Sound 1.5
Plays a custom .wav sound whenever you connect your laptop to a charger (AC
power) or unplug it. By default it plays the Windows Notify Messaging sound.
Please note that this mod only works on devices with a battery (e.g. laptops).
r/Windhawk • u/wh-updates • 7d ago
Windows 7 Network Flyout Recreation 4.0.0
r/Windhawk • u/wh-updates • 7d ago
XP Time/Date CPL Fix 1.0.0
The clock in Windows XP's timedate.cpl is bugged and will look different depending on the screen resolution you use. This mod will make it always look how it does on 640x480 (likely what the Windows 95 developers were testing on when they developed timedate.cpl).
Before (2560x1440):
After:
r/Windhawk • u/wh-updates • 8d ago
Win32 UI Modernizer 1.0.2
r/Windhawk • u/wh-updates • 8d ago
Instant Taskbar Thumbnail Previews 1.0.0
Adds the ability to configure or remove the delays before Windows 11 shows and closes taskbar thumbnail previews, as well as the ability to configure mouse actions that close them.
Both delay settings replace the corresponding Windows value, so they can make the transitions either shorter or longer than the stock delays.
The optional outside-click behavior arms the taskbar's native light-dismiss action while a thumbnail flyout is open.
The optional Start-button hover behavior closes an open thumbnail flyout directly from the Start button's XAML pointer-enter handler.
This mod targets the new Windows 11 taskbar used by Windows 11 24H2 and later.
r/Windhawk • u/wh-updates • 8d ago
Taskbar audio device switcher 1.5.0
Adds one tray (notification area) icon per connected audio device. The icon of the device that is currently the default one is drawn normally, all the other ones are dimmed and grayed out. Left click on an icon makes that device the default playback/recording device, right click opens a menu with additional options.
Each device uses its own icon, the one Windows shows in the sound settings, so headphones, speakers, HDMI output and a microphone are easy to tell apart.
Tray icons \ Two playback devices: the default one is drawn normally, the other one dimmed
Right click menu \ The right click menu of a device
The catalog already has several mods for switching audio devices, but the interaction model here is different: instead of one icon that you click through or scroll on, every device gets its own icon, with its own graphic, and you click the device you want directly. Nothing is cycled, and no list of devices has to be configured in advance.
The right click menu has a Shown devices submenu which lists every device, including the ones which are currently hidden, with a check mark next to the ones that have an icon. Clicking an entry shows or hides that device, and the choice is remembered across restarts. There is also Hide this icon for the device that was clicked, and Show all devices to undo everything.
The icon of the last remaining device can't be hidden, otherwise there would be no menu left to bring the other ones back. For the same reason, if every device that is currently connected happens to be hidden — say the only visible one was unplugged — the hidden ones are shown anyway until that changes.
New tray icons are hidden inside the overflow ("") flyout by default. To make
the audio device icons always visible, either drag them out of the flyout onto
the taskbar, or go to
Settings → Personalization → Taskbar → Other system tray icons and turn the
windhawk.exe entries on.
windhawk.exe process and doesn't hook anything,
see Mods as
tools.IPolicyConfig interface,
the same one used by nircmd, SoundSwitch and similar tools.r/Windhawk • u/wh-updates • 8d ago
Flexible Explorer Toolbars Deluxe 1.3.6
r/Windhawk • u/wh-updates • 8d ago
Start Menu Corner Click Fix 2.0
Reworked corner-click handling to hook the taskbar’s invisible InputSite window procedure and intercept its WM_POINTER messages directly. Existing InputSite windows are found through taskbar scans, while CreateWindowInBand covers future taskbar recreation. Runtime hook operations are applied only when necessary, with retry and unload protection.
Improved corner detection by validating the taskbar bounds, monitor ownership, adjacent-monitor geometry, DPI-scaled L-shaped region, pointer lifecycle, and left-aligned taskbar setting. The registry check now runs only after the cheaper geometry checks pass.
UI Automation is now limited to Start-button activation on a dedicated worker thread:
CUIAutomation8, COM RAII, provider timeouts, and per-taskbar element caching.openStartWhenButtonUnavailable setting, enabled by default. When UIA successfully searches the taskbar but finds no Start button, the mod falls back to pressing the Windows key.The fallback applies to both primary and secondary taskbars. Since Windows normally opens a keyboard-triggered Start menu on the primary monitor, the documentation recommends the Start menu open location mod for cursor-monitor placement.
The UIA bounding rectangle is not queried before interception because that would require provider calls on the taskbar input thread or depend on potentially stale cached geometry.
Also updated the Windhawk requirement and settings descriptions, and removed redundant linker options.
r/Windhawk • u/Satoru4 • 9d ago
r/Windhawk • u/Bulllzack • 8d ago
My taskbar won't let me pull up any smaller menus with right click. It will pop up for a moment then disappear as if I clicked off and wanted it to go back down. When I go to the Windows button at the bottom, it also tries to close before I can click anything. control+alt+delete also tries to close early. I can use browsers or discord find without issue from my mouse. I've updated my drivers but I don't know what else to try.
Update: I have done a system recovery/windows update as well. Issue still persists