|
Post by anixx on Oct 9, 2023 13:23:03 GMT -8
It looks like it needs some similar fixes as the Win10 taskbar: reduce height, fix black background, fix button appearance, make font subpixel rendering.
|
|
|
Post by OrthodoxWin32 on Oct 9, 2023 16:55:26 GMT -8
I agree.
|
|
|
Post by anixx on Oct 9, 2023 16:57:50 GMT -8
Okay, so, this is Win11 taskbar under classic theme. I have an AHK script for this.
It is almost good under default height. If the height is reduced, it needs adjustments for button size and tray. It also uses greyscaly font smoothing (no subpixel), just like Win10 taskbar under themes.
|
|
|
Post by anixx on Oct 9, 2023 18:34:16 GMT -8
This AHK code fixes appearance of Win11 taskbar under classic theme:
#NoTrayIcon #NoEnv SendMode Input SetWorkingDir %A_ScriptDir% WinSet, Style, +0x400000 , ahk_class Shell_TrayWnd WinSet, Style, -0x400000 , ahk_class Shell_TrayWnd Control, Hide,, ReBarWindow321, ahk_class Shell_TrayWnd Control, Hide,, Windows.UI.Composition.DesktopWindowContentBridge2, ahk_class Shell_TrayWnd Control, Show,, Windows.UI.Composition.DesktopWindowContentBridge2, ahk_class Shell_TrayWnd Control, Show,, TrayNotifyWnd1, ahk_class Shell_TrayWnd
|
|
|
Post by OrthodoxWin32 on Oct 10, 2023 1:40:24 GMT -8
Okay, so, this is Win11 taskbar under classic theme. I have an AHK script for this.
It is almost good under default height. If the height is reduced, it needs adjustments for button size and tray. It also uses greyscaly font smoothing (no subpixel), just like Win10 taskbar under themes.
It looks good I think, the colors are good (except on the upper part it seems to me), the shape is good. For the size, there is a Windhawks mod which allows you to modify the size : windhawk.net/mods/taskbar-icon-sizeThe font smoothing problem seems quite worrying, as well as the start button problem.
|
|
|
Post by anixx on Oct 10, 2023 1:57:36 GMT -8
Well, if to reduce the height, the tray does not fit, it is shifted down, the buttons also are shifted down. Upon tray change it may disappear or look wrong, so need a hook that repaints tray on change.
There is no Quick Launch...
|
|
|
Post by OrthodoxWin32 on Oct 10, 2023 2:06:06 GMT -8
Well, if to reduce the height, the tray does not fit, it is shifted down, the buttons also are shifted down. Upon tray change it may disappear or look wrong, so need a hook that repaints tray on change. Maybe it's because it's an AHK script, with a Windhawks mod I imagine there won't be any need to reload the hook. That's worrying. Spitfire_x86 had created an alternative Quick Launch, but it is attached to the taskbar.
|
|
|
Post by anixx on Oct 10, 2023 2:23:43 GMT -8
The hook can be made in AHK or Windhawk. One only needs to know which function to hook.
|
|