Windows 11 Start Menu Styler v1.6#4318
Merged
Merged
Conversation
* Added the new side by side layout for the redesigned Start menu which allows having pinned apps on one side and all apps on the other side. Both can be scrolled independently.
* Updated the following themes to use the new side by side layout: SideBySide, SideBySide2, SideBySideMinimal.
* Update the following themes: NoRecommendedSection, Down Aero, RosePine, UniMenu, Command Center.
* Added the FullScreen theme.
* Added comparison and condition operations to style substitution expressions, for example: `{{x > 8 ? 1 : 3}}`.
There was a problem hiding this comment.
Pull request overview
This PR updates the Windows 11 Start Menu Styler mod to v1.6 by adding a new side-by-side Start menu layout mode (with independently scrollable pinned/apps areas), expanding the style-variable expression language, and refreshing/adding themes to align with the redesigned Start menu.
Changes:
- Add a new
newLayoutSideBySidelayout option and implement runtime visual-tree restructuring to separate pinned-items scrolling from the apps list. - Extend style substitution expressions with comparison operators and a ternary conditional operator (
cond ? a : b) with short-circuit evaluation. - Update multiple built-in themes to use the new layout behavior and add a new FullScreen theme.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+6449
to
+6450
| ThemeTargetStyles{L"StartDocked.SearchBoxToggleButton#StartMenuSearchBox > Grid > ContentPresenter#ContentPresenter > TextBlock#PlaceholderText", { | ||
| L"Text=Search This Precision"}}, |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
{{x > 8 ? 1 : 3}}.