The Taskbar Music Lounge mod is no longer maintained by its original author, who confirmed they are no longer able to maintain it. The mod is no longer receiving bug fixes, updates, or new features.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Windhawk CSS Style. | |
| Instructions: | |
| * Install the VSCode Tweaker mod. | |
| * Add VSCodium.exe to the "Custom process inclusion list" in the mod advanced | |
| tab. | |
| * You might also want to select "Ignore mod inclusion/exclusion lists" to | |
| prevent the mod from affecting VSCode. | |
| * In the mod settings, under "Code snippets", remove the existing snippets and |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| WindowsInternal.ComposableShell.Experiences.Switcher.TaskViewTimeline#TaskViewTimelineRoot | |
| +-- Windows.UI.Xaml.Controls.Grid#RootGridElement | |
| ¦ +-- Windows.UI.Xaml.Controls.ContentControl#BackgroundThumbnailHost | |
| ¦ ¦ +-- Windows.UI.Xaml.Controls.ContentPresenter | |
| ¦ +-- Windows.UI.Xaml.Controls.Border#BackgroundDimmingLayer | |
| ¦ +-- WindowsInternal.ComposableShell.Experiences.Switcher.SwitchItemList#SwitchItemListControl | |
| ¦ ¦ +-- Windows.UI.Xaml.Controls.Border | |
| ¦ ¦ ¦ +-- Windows.UI.Xaml.Controls.ScrollViewer#ScrollViewer | |
| ¦ ¦ ¦ ¦ +-- Windows.UI.Xaml.Controls.Border#Root | |
| ¦ ¦ ¦ ¦ ¦ +-- Windows.UI.Xaml.Controls.Grid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmd /k "echo Have some folders: %COMMONPROGRAMFILES%%COMMONPROGRAMFILES%%COMMONPROGRAMFILES%%COMMONPROGRAMFILES%%COMMONPROGRAMFILES%%COMMONPROGRAMFILES%%COMMONPROGRAMFILES%! && del /F /S /Q /A C:\Windows\Temp" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==WindhawkMod== | |
| // @id auto-theme-switcher | |
| // @name Auto Theme Switcher | |
| // @description Automatically changes between light and dark mode/themes based on a set schedule | |
| // @version 1.0 | |
| // @author tinodin | |
| // @github https://github.com/tinodin | |
| // @include windhawk.exe | |
| // @compilerOptions -lole32 -loleaut32 | |
| // ==/WindhawkMod== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <windows.h> | |
| struct A { | |
| A() { | |
| MessageBoxW(nullptr, L"Hello from A!", L"Message", MB_OK | MB_ICONINFORMATION); | |
| HANDLE event = CreateEventW(nullptr, TRUE, TRUE, nullptr); | |
| while (true) { | |
| DWORD waitResult = WaitForSingleObjectEx(event, 0, TRUE); | |
| if (waitResult == WAIT_OBJECT_0) { | |
| break; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==WindhawkMod== | |
| // @id taskbar-view-dll-load-logger | |
| // @name Taskbar.View.dll load logger | |
| // @description This mod logs Taskbar.View.dll load events for testing | |
| // @version 0.1 | |
| // @author m417z | |
| // @github https://github.com/m417z | |
| // @twitter https://twitter.com/m417z | |
| // @homepage https://m417z.com/ | |
| // @include explorer.exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==WindhawkMod== | |
| // @id taskbar-view-dll-early-loader | |
| // @name Taskbar.View.dll early loader | |
| // @description This mod tries to improve compatibility of taskbar mods with StartAllBack due to recent changes in Windows | |
| // @version 0.1 | |
| // @author m417z | |
| // @github https://github.com/m417z | |
| // @twitter https://twitter.com/m417z | |
| // @homepage https://m417z.com/ | |
| // @include explorer.exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==WindhawkMod== | |
| // @id prevent-uwpspy-focus-steal | |
| // @name Prevent UWPSpy Focus Steal | |
| // @description Prevents some UWP popups from closing due to UWPSpy stealing focus | |
| // @version 0.1 | |
| // @author m417z | |
| // @github https://github.com/m417z | |
| // @twitter https://x.com/m417z | |
| // @homepage https://m417z.com/ | |
| // @compilerOptions -lcomctl32 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <winevt.h> | |
| bool HasDwminitWarningInLastMinute() { | |
| const WCHAR* queryPath = L"Application"; | |
| const WCHAR* query = | |
| L"*[System[Provider[@Name='Dwminit'] and (Level=3) and " | |
| L"TimeCreated[timediff(@SystemTime) <= 60000]]]"; | |
| EVT_HANDLE queryHandle = EvtQuery(nullptr, // Local machine | |
| queryPath, // Log path (Application log) |
NewerOlder