It is currently April 18th, 2024, 11:16 pm

Creating a button that opens "Themes" settings in windows 10

Get help with creating, editing & fixing problems with skins
ali_tbh
Posts: 2
Joined: October 16th, 2022, 9:53 pm

Creating a button that opens "Themes" settings in windows 10

Post by ali_tbh »

Hi Rainmeter fam,

I'm wanting to edit a button on "Cleaner Desktop Skin 1.4" by DocBerlin77. Specifically, I want to get an already existing button to open a particular part of the Windows 10 settings menu - Themes, which exists within personalisation.

So far I have many other buttons doing what I'd like them to, but i'm not sure how to open a part of windows settings in the same way I might a folder or program.

The code for the specific button is in an incomplete state below. Any help would be appreciated.

Code: Select all

[Wallpaper]
Meter = Image
ImageName = #SKINSPATH#\Cleaner Desktop Skin1.4\Image\wallpaper.png
X=20R
Y=r
W=42
H=42
LeftMouseDownAction =   // THIS IS WHERE I NEED THE CORRECT WINDOWS COMMAND OR DIRECTORY
ToolTipText = Click To Open Themes
Thanks!
Last edited by SilverAzide on October 16th, 2022, 10:30 pm, edited 1 time in total.
Reason: Please use code tags when posting code. It's the </> button.
User avatar
SilverAzide
Rainmeter Sage
Posts: 2603
Joined: March 23rd, 2015, 5:26 pm

Re: Creating a button that opens "Themes" settings in windows 10

Post by SilverAzide »

ali_tbh wrote: October 16th, 2022, 10:07 pm
Is this what you are looking for?

Code: Select all

LeftMouseDownAction=["explorer.exe "ms-settings:themes""]
Gadgets Wiki GitHub More Gadgets...
ali_tbh
Posts: 2
Joined: October 16th, 2022, 9:53 pm

Re: Creating a button that opens "Themes" settings in windows 10

Post by ali_tbh »

SilverAzide wrote: October 16th, 2022, 10:32 pm Is this what you are looking for?

Code: Select all

LeftMouseDownAction=["explorer.exe "ms-settings:themes""]
Yes!!!! Thank you so much! it works perfectly. Appreciate it.