Gallery
Supporting101
Supporting works for both the Rainmeter group and application.
Sub-Galleries 7
Rainmeter Workshops
8

Official Group Stamp Contest
21

Icons and Logos
23

Wallpaper
30
Supporting
Rainmeter Workshops 8
Scaling Bar, Bitmap, Histogram, Rotator Images by Eclectic-Tech, journal
Scaling Bar, Bitmap, Histogram, Rotator Images
Scaling Certain Rainmeter Style Meters To accomplish scaling in meters (Bar, Bitmap, Button, Histogram, Rotator), where W and H are used to set the size of the "meter", not the size of the "image", you can use a "universal" TransformationMatrix formula (Formula is by Xanci ):TransformationMatrix = (#Scaler#); 0; 0;(#Scaler#); ((1 - #Scaler#) * [#CURRENTSECTION#: X]); ((1 - #Scaler#) * [#CURRENTSECTION#: Y])Adding this to your meter, and controlling a new #Scaler# variable, you can easily scale these meters to any desired size. Here are 3 skins that demonstrate using TransformationMatrix to scale Rotator meters.
:thumb521168567:One uses...
Vertically Scrolling Text by Eclectic-Tech, journal
Vertically Scrolling Text
Scrolling Text w/TransformationMatrix Version 1.1 Removed dependence on third party Scroller.dll plug-in
Requires Rainmeter 3.0 or newer rainmeter.net/cms/ Overview: Example skins demonstrating vertically scrolling text & using TransformationMatrix on string meters. Premise: Create a skin that will scroll the text vertically in either direction. Then transform the scrolling text to produce "dimensional" effects. Two skins are offered along with this description; ScrollText2Shrink.ini and ScrollText2CenterZoom.ini
ScrollText2Shrink shrinks the text as it progresses up the skin and back down.
ScrollText2CenterZoom maximizes the size near t...
Editing Rainmeter skins the nice way by MerlinTheRed, journal
Editing Rainmeter skins the nice way
Editing and creating Rainmeter skins can be a daunting task. You have to remember the names of lots of options and what values you can assign to them, you have to keep track of your variables, possibly distributed over multiple files, and between all that you have to make sure you get the syntax right. If you have been using the standard Windows Notepad to edit your skin files, it was probably a painful experience.It does not have to be like this! There is a lot a good editor can do to make editing skins easier, so you can spend more time thinking about what your measures and meters should do, and less time thinking about wether it is call...
[Workshop] Laptop Status Indicator by smurfier, journal
[Workshop] Laptop Status Indicator
Wifi and Battery meters are a staple of laptop users and are incredibly easy to create.ImageCrop, ImageTint, and all of the other Image related features are a very useful feature of Rainmeter opening a whole new method of creating dynamic images. We're also going to use some neat tricks with DyanamicVariables, Substitution, and Conditional Statements to make the battery indicator change color and blink when the battery is low.Below is our example skin. :thumb212625108: Note: The big reason we're using ImageCrop instead of a Bar meter is that when using an Image with a Bar meter, the Image cannot be scaled.We need to start by grabbing the ...
Rainmeter Code Walkthrough #2 - Binary Clock by FlyingHyrax, journal
Rainmeter Code Walkthrough #2 - Binary Clock
If you are unfamiliar with the binary (base 2) numeral system, you may want to do some reading here before going through the rest of this post.The aim of this skin is to create a binary-coded decimal clock in Rainmeter. To keep this short, we'll just do the hours and minutes (especially since the code for seconds is virtually identical to the minutes anyway). Download Full Skin Here (package includes several variants - we'll be going through "Decimal_HM.ini") The Groundwork To begin, we'll need [Rainmeter] , [Metadata] , and [Variables] sections. Once again , we'll use @Include to put the variables in an external file (called ...
Rainmeter Code Walkthrough #1 - Do I Need a Jacket by FlyingHyrax, journal
Rainmeter Code Walkthrough #1 - Do I Need a Jacket
This is a code walkthrough of my "Do I Need a Jacket?" Rainmeter weather skin. The goal of the skin is to replicate doineedajacket.com in a Rainmeter weather skin, including the ability of the end user to set their own temperature thresholds. Here's a screenshot of what this skin looks like: Download Here The Groundwork First, lets get the basics out of the way. We of course need [Rainmeter] , [Metadata] , and [Variables] sections.
[Rainmeter]
Update=1000
Author=Flying Hyrax | flyinghyrax.deviantart.com
DynamicWindowSize=1
MouseOverAction=!Execute [!ShowMeterGroup buttons][!Redraw]
MouseLeaveAction=!Execute [!HideMeterGroup butto...
[Workshop] EasySearch by smurfier, journal
[Workshop] EasySearch
Welcome to the latest Rainmeter Workshop! Today we are going to make a skin for performing internet searches using a variety of search engine options. Our example skin is below. :thumb390700286:As always, our first step is to create our [Rainmeter] section. [Rainmeter]
Update=-1 Since our skin relies on user input, there's no need to have it update on a regular interval. Setting the update to -1 tells the skin to update once, and only once.Next up is the [Variables] section. We need to create a variable to use later on so we know which one of our search engine we are going to be using. This will also make it easier to create an indicator s...