├── @Resources ├── icons │ └── .gitkeep ├── Images │ ├── bin.png │ ├── cpu.png │ ├── ram.png │ ├── Nav1.png │ ├── clock.png │ ├── cmder.png │ ├── nav2.png │ ├── next.png │ ├── open.png │ ├── pause.png │ ├── play.png │ ├── power.png │ ├── Button.png │ ├── calendar.png │ ├── chrome.png │ ├── folder.png │ ├── previous.png │ ├── refresh.png │ ├── settings.png │ ├── volume.png │ ├── arrow_left.png │ ├── chevron_up.png │ ├── arrow_right.png │ ├── chevron_down.png │ ├── chevron_left.png │ └── chevron_right.png ├── fonts │ ├── FiraCode-Bold.ttf │ ├── FiraCode-Light.ttf │ ├── FiraCode-Medium.ttf │ ├── FiraCode-Regular.ttf │ └── FiraCode-Retina.ttf └── settings.inc ├── .gitignore ├── README.md ├── Bar └── bar.ini └── Launcher └── launcher.ini /@Resources/icons/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /@Resources/Images/bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/bin.png -------------------------------------------------------------------------------- /@Resources/Images/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/cpu.png -------------------------------------------------------------------------------- /@Resources/Images/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/ram.png -------------------------------------------------------------------------------- /@Resources/Images/Nav1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/Nav1.png -------------------------------------------------------------------------------- /@Resources/Images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/clock.png -------------------------------------------------------------------------------- /@Resources/Images/cmder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/cmder.png -------------------------------------------------------------------------------- /@Resources/Images/nav2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/nav2.png -------------------------------------------------------------------------------- /@Resources/Images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/next.png -------------------------------------------------------------------------------- /@Resources/Images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/open.png -------------------------------------------------------------------------------- /@Resources/Images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/pause.png -------------------------------------------------------------------------------- /@Resources/Images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/play.png -------------------------------------------------------------------------------- /@Resources/Images/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/power.png -------------------------------------------------------------------------------- /@Resources/Images/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/Button.png -------------------------------------------------------------------------------- /@Resources/Images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/calendar.png -------------------------------------------------------------------------------- /@Resources/Images/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/chrome.png -------------------------------------------------------------------------------- /@Resources/Images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/folder.png -------------------------------------------------------------------------------- /@Resources/Images/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/previous.png -------------------------------------------------------------------------------- /@Resources/Images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/refresh.png -------------------------------------------------------------------------------- /@Resources/Images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/settings.png -------------------------------------------------------------------------------- /@Resources/Images/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/volume.png -------------------------------------------------------------------------------- /@Resources/Images/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/arrow_left.png -------------------------------------------------------------------------------- /@Resources/Images/chevron_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/chevron_up.png -------------------------------------------------------------------------------- /@Resources/Images/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/arrow_right.png -------------------------------------------------------------------------------- /@Resources/Images/chevron_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/chevron_down.png -------------------------------------------------------------------------------- /@Resources/Images/chevron_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/chevron_left.png -------------------------------------------------------------------------------- /@Resources/Images/chevron_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/Images/chevron_right.png -------------------------------------------------------------------------------- /@Resources/fonts/FiraCode-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/fonts/FiraCode-Bold.ttf -------------------------------------------------------------------------------- /@Resources/fonts/FiraCode-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/fonts/FiraCode-Light.ttf -------------------------------------------------------------------------------- /@Resources/fonts/FiraCode-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/fonts/FiraCode-Medium.ttf -------------------------------------------------------------------------------- /@Resources/fonts/FiraCode-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/fonts/FiraCode-Regular.ttf -------------------------------------------------------------------------------- /@Resources/fonts/FiraCode-Retina.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasOe/rainmeter/HEAD/@Resources/fonts/FiraCode-Retina.ttf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Don't track content of these folders 2 | @Resources/icons/* 3 | !@Resources/icons/.gitkeep 4 | Bar/folder.ini 5 | Changelog.txt 6 | -------------------------------------------------------------------------------- /@Resources/settings.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | 3 | fontname=FiraCode 4 | dockfontsize=12 5 | lineheight=13 6 | fontcolor=255,255,255,200 7 | hovercolor=255,255,255,255 8 | 9 | backgroundcolor=40, 44, 52, 255 10 | secondarycolor=44, 49, 60, 255 11 | 12 | desktoppath=%USERPROFILE%\Desktop 13 | 14 | ;Program paths 15 | chromepath=["C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"] 16 | cmdrpath=["D:\Program Files\Cmder\Cmder.exe"] 17 | 18 | ;Valid values are Blur, Acrylic, and None 19 | blurtype=None 20 | ;Type of information to sort the entries by. Valid values are: Name, Size, Type, Date. 21 | sorttype=Type 22 | 23 | ;Dock 24 | dockheight=30 25 | iconsize=17 26 | 27 | ;Locations 28 | songplace=0 29 | binplace=50 30 | 31 | ramplace=350 32 | cpuplace=450 33 | 34 | chromeplace=2130 35 | cmderplace=2100 36 | 37 | dayplace=2300 38 | clockplace=2500 39 | 40 | ;Hide Elements 41 | hidesong=1 42 | hidechrome=0 43 | hidecmder=0 44 | hidebin=0 45 | hidetime=0 46 | hideday=0 47 | hidecpu=0 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rainmeter 2 | This is a custom Suite for Rainmeter. 3 | 4 | ### Installation 5 | 1. Download and install the latest [Release](https://github.com/LucasOe/Rainmeter/releases). 6 | 3. Install the fonts in `@Resources\fonts`. 7 | 2. Open `@Resources\settings.inc` and change the settings. Make sure the program paths are correct. 8 | 9 | ### Notes 10 | * Rightclicking the very left icon shows / hides the taskbar. Remove `AccentState=2` in `\LucasOe\TranslucentTaskbar\toggle.ini` to blur the taskbar background. 11 | * Leftcklicking the very left icon toggles the launcher. 12 | * Rightclicking the folder opens it in the Explorer. 13 | * Clicking on the folder icon opens the Desktop folder. 14 | * Clicking the *Desktop* label in the launcher brings you back to the Desktop. 15 | 16 | ### Work in progress 17 | [WebNowPlaying](https://github.com/tjhrulz/WebNowPlaying) is currently still work in progress. You can enable it in `@Resources\settings.inc`. Make sure to install the plugin and the browser extension as it's not included in the release. 18 | 19 | ### Credits 20 | * The icons are provided by [GitHub's Octicons.](https://primer.style/octicons/) 21 | -------------------------------------------------------------------------------- /Bar/bar.ini: -------------------------------------------------------------------------------- 1 | [Rainmeter] 2 | Update=1000 3 | MouseActionCursor=0 4 | DesktopWorkAreaType=0 5 | DesktopWorkArea@1=0,60,1366,708 6 | 7 | [Metadata] 8 | Author=u/LucasOe 9 | Version=1.1f 10 | Description=A simple Dock. 11 | Instructions=https://github.com/LucasOe/Rainmeter 12 | 13 | 14 | 15 | ;----------------------------------- 16 | ; Variables 17 | ;----------------------------------- 18 | 19 | 20 | 21 | [Variables] 22 | @Include=#@#\settings.inc 23 | 24 | ;CPU Infos: 25 | cpuname="Intel Core i7-4790K" 26 | 27 | ;Weather: 28 | WeatherPlace=1750 29 | WeatherCode=GMXX0198 30 | NameYourCity=HAMM 31 | 32 | 33 | 34 | ;----------------------------------- 35 | ; Styles 36 | ;----------------------------------- 37 | 38 | 39 | 40 | [textstyle] 41 | Fontface=#fontname# 42 | Fontcolor=#fontcolor# 43 | Fontsize=#dockfontsize# 44 | Fontweight=500 45 | AntiAlias=1 46 | Stringalign=LeftCenter 47 | antialias=1 48 | Group=minmax 49 | 50 | 51 | 52 | ;----------------------------------- 53 | ; Measures 54 | ;----------------------------------- 55 | 56 | 57 | 58 | [Time] 59 | Measure=Time 60 | Format=%H:%M 61 | UpdateDivider=1 62 | 63 | [Day] 64 | Measure=Time 65 | Format=%b %#d - %A 66 | 67 | [FrostedGlass] 68 | Measure=Plugin 69 | Plugin=FrostedGlass 70 | Type=#blurtype# 71 | Border=None 72 | 73 | [MeasureBinSize] 74 | Measure=Plugin 75 | Plugin=RecycleManager.dll 76 | RecycleType=Size 77 | 78 | [MeasureCPULoad] 79 | Measure=CPU 80 | UpdateDivider=1 81 | 82 | [MeasureMemoryLoad] 83 | Measure=PhysicalMemory 84 | UpdateDivider=1 85 | 86 | [MeasurePlayer] 87 | Measure=Plugin 88 | Plugin=WebNowPlaying 89 | PlayerType=Player 90 | 91 | [MeasureTrack] 92 | Measure=Plugin 93 | Plugin=WebNowPlaying 94 | PlayerType=Title 95 | IfMatch=^$ 96 | IfMatchAction=[!HideMeterGroup Player] 97 | IfNotMatchAction=[!ShowMeterGroup Player] 98 | 99 | ;The play state of the player 100 | ;0 is no song is selected, this will almost never happen as the plugin retains the last known song in the future I may change it so it clears when the websocket closes but I dont think I want to do that in the event the websocket closes unexpectedly you may want it to keep old data 101 | ;1 is playing 102 | ;2 is paused 103 | [MeasurePlayPause] 104 | Measure=Plugin 105 | Plugin=WebNowPlaying 106 | PlayerType=State 107 | Substitute="0":"Play","1":"Pause","2":"Play","3":"Replay" 108 | 109 | [MeasurePosition] 110 | Measure=Plugin 111 | Plugin=WebNowPlaying 112 | PlayerType=Position 113 | 114 | [MeasureDuration] 115 | Measure=Plugin 116 | Plugin=WebNowPlaying 117 | PlayerType=Duration 118 | 119 | [MeasureProgress] 120 | Measure=Plugin 121 | Plugin=WebNowPlaying 122 | PlayerType=Progress 123 | 124 | 125 | 126 | ;----------------------------------- 127 | ; Meters 128 | ;----------------------------------- 129 | 130 | 131 | 132 | [BG] 133 | Meter=Image 134 | SolidColor=#backgroundcolor# 135 | W=#Screenareawidth# 136 | H=#dockheight# 137 | UpdateDivider=-1 138 | 139 | 140 | 141 | ;----------------------------------- 142 | ; Nav 143 | ;----------------------------------- 144 | 145 | [Nav1] 146 | Meter=Image 147 | ImageName=#@#images\nav1.png 148 | X=10 149 | Y=-1 150 | MouseActionCursor=1 151 | LeftMouseUpAction=[!toggleconfig "LucasOe\Launcher" "Launcher.ini"] [!updatemeter *] [!redraw] 152 | 153 | ;----------------------------------- 154 | ; Time & Day 155 | ;----------------------------------- 156 | 157 | [Calendar] 158 | Hidden=#hideday# 159 | Meter=image 160 | ImageName=#@#images\calendar.png 161 | X=(#dayplace# - 25) 162 | Y=(#dockheight# - #iconsize#) / 2 163 | W=#iconsize# 164 | ImageAlpha=200 165 | 166 | [.Day] 167 | Hidden=#hideday# 168 | Meter=String 169 | Meterstyle=textstyle 170 | Measurename=Day 171 | Text="%1" 172 | X=#dayplace# 173 | Y=#lineheight# 174 | 175 | [Clock] 176 | Hidden=#hidetime# 177 | Meter=image 178 | ImageName=#@#images\clock.png 179 | X=(#clockplace# - 25) 180 | Y=(#dockheight# - #iconsize#) / 2 181 | W=#iconsize# 182 | ImageAlpha=200 183 | 184 | [.Time] 185 | Hidden=#hidetime# 186 | Meter=String 187 | Meterstyle=textstyle 188 | Measurename=Time 189 | Text="%1" 190 | X=#clockplace# 191 | Y=#lineheight# 192 | 193 | ;----------------------------------- 194 | ; Memory Load 195 | ;----------------------------------- 196 | 197 | [MeterRamImage] 198 | Hidden=#hideram# 199 | Meter=image 200 | ImageName=#@#images\ram.png 201 | X=(#RamPlace# - 25) 202 | Y=(#dockheight# - #iconsize#) / 2 203 | W=#iconsize# 204 | ImageAlpha=200 205 | 206 | [MeterRamLoad] 207 | Hidden=#hideram# 208 | Meter=string 209 | MeasureName=MeasureMemoryLoad 210 | Meterstyle=textstyle 211 | AutoScale=1 212 | NumOfDecimals=1 213 | Text=%1B 214 | X=#RamPlace# 215 | Y=#lineheight# 216 | DynamicVariables=1 217 | 218 | ;----------------------------------- 219 | ; CPU Load 220 | ;----------------------------------- 221 | 222 | [MeterCpuImage] 223 | Hidden=#hidecpu# 224 | Meter=image 225 | ImageName=#@#images\cpu.png 226 | X=(#CpuPlace# - 25) 227 | Y=(#dockheight# - #iconsize#) / 2 228 | W=#iconsize# 229 | ImageAlpha=200 230 | 231 | [MeterCpuLoad] 232 | Hidden=#hidecpu# 233 | Meter=string 234 | MeasureName=MeasureCPULoad 235 | Meterstyle=textstyle 236 | AutoScale=1 237 | NumOfDecimals=0 238 | Postfix="%" 239 | X=#CpuPlace# 240 | Y=#lineheight# 241 | DynamicVariables=1 242 | 243 | ;----------------------------------- 244 | ; Recycle Bin 245 | ;----------------------------------- 246 | 247 | [MeterBin] 248 | Hidden=#hidebin# 249 | Meter=String 250 | X=#BinPlace# 251 | W=([MeterBinImage:W] + [MeterBinSize:W]) 252 | H=30 253 | MouseActionCursor=1 254 | DynamicVariables=1 255 | LeftMouseUpAction=[!CommandMeasure MeasureBinSize OpenBin] 256 | RightMouseUpAction=[!CommandMeasure MeasureBinSize EmptyBin][!Update][!Redraw] 257 | MouseOverAction=[!SetOption MeterBinImage ImageAlpha 255][!Update][!Redraw] 258 | MouseLeaveAction=[!SetOption MeterBinImage ImageAlpha 200][!Update][!Redraw] 259 | 260 | [MeterBinImage] 261 | Hidden=#hidebin# 262 | Meter=Image 263 | ImageName=#@#images\bin.png 264 | X=#BinPlace# 265 | Y=(#dockheight# - #iconsize#) / 2 266 | W=#iconsize# 267 | PreserveAspectRatio=1 268 | ImageAlpha=200 269 | DynamicVariables=1 270 | 271 | [MeterBinSize] 272 | Hidden=#hidebin# 273 | Meter=String 274 | Meterstyle=textstyle 275 | MeasureName=MeasureBinSize 276 | X=(#BinPlace# + 5 + [MeterBinImage:W]) 277 | Y=#lineheight# 278 | Stringalign=LeftCenter 279 | Text=%1B 280 | AutoScale=1 281 | DynamicVariables=1 282 | 283 | ;----------------------------------- 284 | ; Process 285 | ;----------------------------------- 286 | 287 | [MeterChrome] 288 | Hidden=#hidechrome# 289 | Meter=image 290 | ImageName=#@#images\chrome.png 291 | X=(#ChromePlace# - 25) 292 | Y=(#dockheight# - #iconsize#) / 2 293 | W=#iconsize# 294 | ImageAlpha=200 295 | LeftMouseUpAction=#chromepath# 296 | MouseOverAction=[!SetOption MeterChrome ImageAlpha 255][!Update][!Redraw] 297 | MouseLeaveAction=[!SetOption MeterChrome ImageAlpha 200][!Update][!Redraw] 298 | 299 | [MeterCmder] 300 | Hidden=#hidecmder# 301 | Meter=image 302 | ImageName=#@#images\cmder.png 303 | X=(#CmderPlace# - 25) 304 | Y=(#dockheight# - #iconsize#) / 2 305 | W=#iconsize# 306 | ImageAlpha=200 307 | LeftMouseUpAction=#cmdrpath# 308 | MouseOverAction=[!SetOption MeterCmder ImageAlpha 255][!Update][!Redraw] 309 | MouseLeaveAction=[!SetOption MeterCmder ImageAlpha 200][!Update][!Redraw] 310 | 311 | ;----------------------------------- 312 | ; Music 313 | ;----------------------------------- 314 | 315 | [MeterArtist] 316 | Hidden=#hidesong# 317 | Meter=String 318 | MeasureName=MeasureTrack 319 | Meterstyle=textstyle 320 | X=#songplace# 321 | Y=#lineheight# 322 | W=250 323 | H=#dockheight# 324 | ClipString=1 325 | 326 | [MeterPlayPause] 327 | Hidden=#hidesong# 328 | Meter=image 329 | ImageName=#@#images\[MeasurePlayPause].png 330 | X=(#songplace# - 60) 331 | Y=(#dockheight# - #iconsize#) / 2 332 | W=#iconsize# 333 | ImageAlpha=200 334 | MouseOverAction=[!SetOption MeterPlayPause ImageAlpha 255][!Update][!Redraw] 335 | MouseLeaveAction=[!SetOption MeterPlayPause ImageAlpha 200][!Update][!Redraw] 336 | LeftMouseUpAction=[!CommandMeasure MeasurePlayPause "PlayPause"] 337 | DynamicVariables=1 338 | 339 | [MeterNext] 340 | Hidden=#hidesong# 341 | Meter=Image 342 | ImageName=#@#Images\Next.png 343 | X=(#songplace# - 40) 344 | Y=(#dockheight# - #iconsize#) / 2 345 | W=#iconsize# 346 | ImageAlpha=200 347 | MouseOverAction=[!SetOption MeterNext ImageAlpha 255][!Update][!Redraw] 348 | MouseLeaveAction=[!SetOption MeterNext ImageAlpha 200][!Update][!Redraw] 349 | LeftMouseUpAction=[!CommandMeasure MeasurePlayPause "Next"] 350 | 351 | [MeterPrevious] 352 | Hidden=#hidesong# 353 | Meter=Image 354 | ImageName=#@#Images\Previous.png 355 | X=(#songplace# - 80) 356 | Y=(#dockheight# - #iconsize#) / 2 357 | W=#iconsize# 358 | ImageAlpha=200 359 | MouseOverAction=[!SetOption MeterPrevious ImageAlpha 255][!Update][!Redraw] 360 | MouseLeaveAction=[!SetOption MeterPrevious ImageAlpha 200][!Update][!Redraw] 361 | LeftMouseUpAction=[!CommandMeasure MeasurePlayPause "Previous"] -------------------------------------------------------------------------------- /Launcher/launcher.ini: -------------------------------------------------------------------------------- 1 | [Rainmeter] 2 | Update=100 3 | MouseScrollUpAction=[!CommandMeasure mPath "IndexUp"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 4 | MouseScrollDownAction=[!CommandMeasure mPath "IndexDown"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 5 | MouseActionCursor=0 6 | 7 | [Metadata] 8 | Author=u/LucasOe 9 | Edited=u/Steve4Smash 10 | Version=1.1f 11 | Description=A simple Launcher. 12 | Instructions=https://github.com/LucasOe/Rainmeter 13 | 14 | 15 | 16 | ;----------------------------------- 17 | ; Variables 18 | ;----------------------------------- 19 | 20 | 21 | 22 | [Variables] 23 | @Include=#@#\settings.inc 24 | width=300 25 | height=520 26 | 27 | 28 | ;----------------------------------- 29 | ; Styles 30 | ;----------------------------------- 31 | 32 | 33 | 34 | [textstyle] 35 | Fontface=#fontname# 36 | Fontcolor=#fontcolor# 37 | AntiAlias=1 38 | Stringalign=left 39 | antialias=1 40 | Group=minmax 41 | 42 | [infostyle] 43 | Fontface=#fontname# 44 | X=35 45 | Y=20r 46 | Text="%1" 47 | Clipstring=2 48 | ClipStringW=190 49 | ClipstringH=14 50 | AntiAlias=1 51 | 52 | [IconStyle] 53 | X=10 54 | Y=20r 55 | antialias=1 56 | 57 | 58 | 59 | ;----------------------------------- 60 | ; Meters 61 | ;----------------------------------- 62 | 63 | 64 | 65 | [Background] 66 | Meter=Shape 67 | Shape=Rectangle 0,0,257,520,10 | Fill Color #backgroundcolor# | StrokeWidth 0 68 | Shape2=Rectangle 0,0,257,520,10 | Fill Color #secondarycolor# | StrokeWidth 0 69 | Shape3=Rectangle 0,0,257,20,0 | Fill Color #backgroundcolor# | StrokeWidth 0 70 | Shape4=Combine Shape2 | Intersect Shape3 71 | UpdateDivider=-1 72 | 73 | [Headertext] 74 | Meter=String 75 | Meterstyle=textstyle 76 | Text="Desktop" 77 | FontWeight=500 78 | Stringalign=leftcenter 79 | X=36 80 | Y=8 81 | Mouseoveraction=[!setoption Headertext fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 82 | Mouseleaveaction=[!setoption Headertext fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 83 | LeftMouseUpAction=[!SetOption mPath Path "#desktoppath#"][!CommandMeasure mPath Update][!UpdateMeter *][!Redraw] 84 | 85 | [Previous] 86 | Meter=image 87 | imagename=#@#images\arrow_left.png 88 | W=12 89 | H=12 90 | X=8 91 | Y=4 92 | ImageRotate=0 93 | imagetint=#fontcolor# 94 | antialias=1 95 | Mouseoveraction=[!setoption Previous imagetint "#hovercolor#"] [!UpdateMeter *][!Redraw] 96 | Mouseleaveaction=[!setoption Previous imagetint "#fontcolor#"] [!UpdateMeter *][!Redraw] 97 | LeftMouseUpAction=[!CommandMeasure mPath "PreviousFolder"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 98 | 99 | [Open] 100 | Meter=image 101 | imagename=#@#images\open.png 102 | W=12 103 | H=12 104 | X=234 105 | Y=4 106 | imagetint=#fontcolor# 107 | antialias=1 108 | Mouseoveraction=[!setoption open imagetint "#hovercolor#"] [!UpdateMeter *][!Redraw] 109 | Mouseleaveaction=[!setoption open imagetint "#fontcolor#"] [!UpdateMeter *][!Redraw] 110 | LeftMouseupaction=["#desktoppath#"] 111 | 112 | [Refresh] 113 | Meter=image 114 | imagename=#@#images\refresh.png 115 | W=12 116 | H=12 117 | X=215 118 | Y=4 119 | ImageRotate=0 120 | imagetint=#fontcolor# 121 | antialias=1 122 | Mouseoveraction=[!setoption Refresh imagetint "#hovercolor#"] [!UpdateMeter *][!Redraw] 123 | Mouseleaveaction=[!setoption Refresh imagetint "#fontcolor#"] [!UpdateMeter *][!Redraw] 124 | LeftMouseUpAction=[!RefreshApp] 125 | 126 | [Up] 127 | Meter=image 128 | imagename=#@#images\chevron_up.png 129 | W=12 130 | H=12 131 | X=237 132 | Y=21 133 | imagetint=#fontcolor# 134 | antialias=1 135 | Mouseoveraction=[!setoption Up imagetint "#hovercolor#"] [!UpdateMeter *][!Redraw] 136 | Mouseleaveaction=[!setoption Up imagetint "#fontcolor#"] [!UpdateMeter *][!Redraw] 137 | LeftMouseupAction=[!CommandMeasure mPath "IndexUp"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 138 | 139 | [Down] 140 | Meter=image 141 | imagename=#@#images\chevron_down.png 142 | W=12 143 | H=12 144 | X=237 145 | Y=500 146 | imagetint=#fontcolor# 147 | antialias=1 148 | Mouseoveraction=[!setoption Down imagetint "#hovercolor#"] [!UpdateMeter *][!Redraw] 149 | Mouseleaveaction=[!setoption Down imagetint "#fontcolor#"] [!UpdateMeter *][!Redraw] 150 | LeftMouseupAction=[!CommandMeasure mPath "IndexDown"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 151 | 152 | 153 | 154 | ;----------------------------------- 155 | ; Measures 156 | ;----------------------------------- 157 | 158 | 159 | 160 | [FrostedGlass] 161 | Measure=Plugin 162 | Plugin=FrostedGlass 163 | Type=#blurtype# 164 | Border=None 165 | 166 | [mPath] 167 | Measure=Plugin 168 | Plugin=FileView 169 | Path="#desktoppath#" 170 | Count=25 171 | HideExtensions=1 172 | SortType=#sorttype# 173 | ShowDotDot=0 174 | 175 | ;----------------------------------- 176 | ; Measures Name 177 | ;----------------------------------- 178 | 179 | [mIndex1Name] 180 | Measure=Plugin 181 | Plugin=FileView 182 | Path=[mPath] 183 | Type=FileName 184 | Index=1 185 | Group=Children 186 | HideExtensions=1 187 | 188 | [mIndex2Name] 189 | Measure=Plugin 190 | Plugin=FileView 191 | Path=[mPath] 192 | Type=FileName 193 | Index=2 194 | Group=Children 195 | HideExtensions=1 196 | 197 | [mIndex3Name] 198 | Measure=Plugin 199 | Plugin=FileView 200 | Path=[mPath] 201 | Type=FileName 202 | Index=3 203 | Group=Children 204 | 205 | [mIndex4Name] 206 | Measure=Plugin 207 | Plugin=FileView 208 | Path=[mPath] 209 | Type=FileName 210 | Index=4 211 | Group=Children 212 | 213 | [mIndex5Name] 214 | Measure=Plugin 215 | Plugin=FileView 216 | Path=[mPath] 217 | Type=FileName 218 | Index=5 219 | Group=Children 220 | 221 | [mIndex6Name] 222 | Measure=Plugin 223 | Plugin=FileView 224 | Path=[mPath] 225 | Type=FileName 226 | Index=6 227 | Group=Children 228 | 229 | [mIndex7Name] 230 | Measure=Plugin 231 | Plugin=FileView 232 | Path=[mPath] 233 | Type=FileName 234 | Index=7 235 | Group=Children 236 | 237 | [mIndex8Name] 238 | Measure=Plugin 239 | Plugin=FileView 240 | Path=[mPath] 241 | Type=FileName 242 | Index=8 243 | Group=Children 244 | 245 | [mIndex9Name] 246 | Measure=Plugin 247 | Plugin=FileView 248 | Path=[mPath] 249 | Type=FileName 250 | Index=9 251 | Group=Children 252 | 253 | [mIndex10Name] 254 | Measure=Plugin 255 | Plugin=FileView 256 | Path=[mPath] 257 | Type=FileName 258 | Index=10 259 | Group=Children 260 | 261 | [mIndex11Name] 262 | Measure=Plugin 263 | Plugin=FileView 264 | Path=[mPath] 265 | Type=FileName 266 | Index=11 267 | Group=Children 268 | 269 | [mIndex12Name] 270 | Measure=Plugin 271 | Plugin=FileView 272 | Path=[mPath] 273 | Type=FileName 274 | Index=12 275 | Group=Children 276 | 277 | [mIndex13Name] 278 | Measure=Plugin 279 | Plugin=FileView 280 | Path=[mPath] 281 | Type=FileName 282 | Index=13 283 | Group=Children 284 | 285 | [mIndex14Name] 286 | Measure=Plugin 287 | Plugin=FileView 288 | Path=[mPath] 289 | Type=FileName 290 | Index=14 291 | Group=Children 292 | 293 | [mIndex15Name] 294 | Measure=Plugin 295 | Plugin=FileView 296 | Path=[mPath] 297 | Type=FileName 298 | Index=15 299 | Group=Children 300 | 301 | [mIndex16Name] 302 | Measure=Plugin 303 | Plugin=FileView 304 | Path=[mPath] 305 | Type=FileName 306 | Index=16 307 | Group=Children 308 | 309 | [mIndex17Name] 310 | Measure=Plugin 311 | Plugin=FileView 312 | Path=[mPath] 313 | Type=FileName 314 | Index=17 315 | Group=Children 316 | 317 | [mIndex18Name] 318 | Measure=Plugin 319 | Plugin=FileView 320 | Path=[mPath] 321 | Type=FileName 322 | Index=18 323 | Group=Children 324 | 325 | [mIndex19Name] 326 | Measure=Plugin 327 | Plugin=FileView 328 | Path=[mPath] 329 | Type=FileName 330 | Index=19 331 | Group=Children 332 | 333 | [mIndex20Name] 334 | Measure=Plugin 335 | Plugin=FileView 336 | Path=[mPath] 337 | Type=FileName 338 | Index=20 339 | Group=Children 340 | 341 | [mIndex21Name] 342 | Measure=Plugin 343 | Plugin=FileView 344 | Path=[mPath] 345 | Type=FileName 346 | Index=21 347 | Group=Children 348 | 349 | [mIndex22Name] 350 | Measure=Plugin 351 | Plugin=FileView 352 | Path=[mPath] 353 | Type=FileName 354 | Index=22 355 | Group=Children 356 | 357 | [mIndex23Name] 358 | Measure=Plugin 359 | Plugin=FileView 360 | Path=[mPath] 361 | Type=FileName 362 | Index=23 363 | Group=Children 364 | 365 | [mIndex24Name] 366 | Measure=Plugin 367 | Plugin=FileView 368 | Path=[mPath] 369 | Type=FileName 370 | Index=24 371 | Group=Children 372 | 373 | [mIndex25Name] 374 | Measure=Plugin 375 | Plugin=FileView 376 | Path=[mPath] 377 | Type=FileName 378 | Index=25 379 | Group=Children 380 | 381 | ;----------------------------------- 382 | ; Measures Icon 383 | ;----------------------------------- 384 | 385 | [mIndex1Icon] 386 | Measure=Plugin 387 | Plugin=FileView 388 | Path=[mPath] 389 | IconPath="#@#icons\icon1.ico" 390 | Type=Icon 391 | IconSize=small 392 | Index=1 393 | Group=Children 394 | 395 | [mIndex2Icon] 396 | Measure=Plugin 397 | Plugin=FileView 398 | Path=[mPath] 399 | IconPath="#@#icons\icon2.ico" 400 | Type=Icon 401 | IconSize=small 402 | Index=2 403 | Group=Children 404 | 405 | [mIndex3Icon] 406 | Measure=Plugin 407 | Plugin=FileView 408 | Path=[mPath] 409 | IconPath="#@#icons\icon3.ico" 410 | Type=Icon 411 | IconSize=small 412 | Index=3 413 | Group=Children 414 | 415 | [mIndex4Icon] 416 | Measure=Plugin 417 | Plugin=FileView 418 | Path=[mPath] 419 | IconPath="#@#icons\icon4.ico" 420 | Type=Icon 421 | IconSize=small 422 | Index=4 423 | Group=Children 424 | 425 | [mIndex5Icon] 426 | Measure=Plugin 427 | Plugin=FileView 428 | Path=[mPath] 429 | IconPath="#@#icons\icon5.ico" 430 | Type=Icon 431 | IconSize=small 432 | Index=5 433 | Group=Children 434 | 435 | [mIndex6Icon] 436 | Measure=Plugin 437 | Plugin=FileView 438 | Path=[mPath] 439 | IconPath="#@#icons\icon6.ico" 440 | Type=Icon 441 | IconSize=small 442 | Index=6 443 | Group=Children 444 | 445 | [mIndex7Icon] 446 | Measure=Plugin 447 | Plugin=FileView 448 | Path=[mPath] 449 | IconPath="#@#icons\icon7.ico" 450 | Type=Icon 451 | IconSize=small 452 | Index=7 453 | Group=Children 454 | 455 | [mIndex8Icon] 456 | Measure=Plugin 457 | Plugin=FileView 458 | Path=[mPath] 459 | IconPath="#@#icons\icon8.ico" 460 | Type=Icon 461 | IconSize=small 462 | Index=8 463 | Group=Children 464 | 465 | [mIndex9Icon] 466 | Measure=Plugin 467 | Plugin=FileView 468 | Path=[mPath] 469 | IconPath="#@#icons\icon9.ico" 470 | Type=Icon 471 | IconSize=small 472 | Index=9 473 | Group=Children 474 | 475 | [mIndex10Icon] 476 | Measure=Plugin 477 | Plugin=FileView 478 | Path=[mPath] 479 | IconPath="#@#icons\icon10.ico" 480 | Type=Icon 481 | IconSize=small 482 | Index=10 483 | Group=Children 484 | 485 | [mIndex11Icon] 486 | Measure=Plugin 487 | Plugin=FileView 488 | Path=[mPath] 489 | IconPath="#@#icons\icon11.ico" 490 | Type=Icon 491 | IconSize=small 492 | Index=11 493 | Group=Children 494 | 495 | [mIndex12Icon] 496 | Measure=Plugin 497 | Plugin=FileView 498 | Path=[mPath] 499 | IconPath="#@#icons\icon12.ico" 500 | Type=Icon 501 | IconSize=small 502 | Index=12 503 | Group=Children 504 | 505 | [mIndex13Icon] 506 | Measure=Plugin 507 | Plugin=FileView 508 | Path=[mPath] 509 | IconPath="#@#icons\icon13.ico" 510 | Type=Icon 511 | IconSize=small 512 | Index=13 513 | Group=Children 514 | 515 | [mIndex14Icon] 516 | Measure=Plugin 517 | Plugin=FileView 518 | Path=[mPath] 519 | IconPath="#@#icons\icon14.ico" 520 | Type=Icon 521 | IconSize=small 522 | Index=14 523 | Group=Children 524 | 525 | [mIndex15Icon] 526 | Measure=Plugin 527 | Plugin=FileView 528 | Path=[mPath] 529 | IconPath="#@#icons\icon15.ico" 530 | Type=Icon 531 | IconSize=small 532 | Index=15 533 | Group=Children 534 | 535 | [mIndex16Icon] 536 | Measure=Plugin 537 | Plugin=FileView 538 | Path=[mPath] 539 | IconPath="#@#icons\icon16.ico" 540 | Type=Icon 541 | IconSize=small 542 | Index=16 543 | Group=Children 544 | 545 | [mIndex17Icon] 546 | Measure=Plugin 547 | Plugin=FileView 548 | Path=[mPath] 549 | IconPath="#@#icons\icon16.ico" 550 | Type=Icon 551 | IconSize=small 552 | Index=17 553 | Group=Children 554 | 555 | [mIndex18Icon] 556 | Measure=Plugin 557 | Plugin=FileView 558 | Path=[mPath] 559 | IconPath="#@#icons\icon17.ico" 560 | Type=Icon 561 | IconSize=small 562 | Index=18 563 | Group=Children 564 | 565 | [mIndex19Icon] 566 | Measure=Plugin 567 | Plugin=FileView 568 | Path=[mPath] 569 | IconPath="#@#icons\icon18.ico" 570 | Type=Icon 571 | IconSize=small 572 | Index=19 573 | Group=Children 574 | 575 | [mIndex20Icon] 576 | Measure=Plugin 577 | Plugin=FileView 578 | Path=[mPath] 579 | IconPath="#@#icons\icon19.ico" 580 | Type=Icon 581 | IconSize=small 582 | Index=20 583 | Group=Children 584 | 585 | [mIndex21Icon] 586 | Measure=Plugin 587 | Plugin=FileView 588 | Path=[mPath] 589 | IconPath="#@#icons\icon20.ico" 590 | Type=Icon 591 | IconSize=small 592 | Index=21 593 | Group=Children 594 | 595 | [mIndex22Icon] 596 | Measure=Plugin 597 | Plugin=FileView 598 | Path=[mPath] 599 | IconPath="#@#icons\icon21.ico" 600 | Type=Icon 601 | IconSize=small 602 | Index=22 603 | Group=Children 604 | 605 | [mIndex23Icon] 606 | Measure=Plugin 607 | Plugin=FileView 608 | Path=[mPath] 609 | IconPath="#@#icons\icon22.ico" 610 | Type=Icon 611 | IconSize=small 612 | Index=23 613 | Group=Children 614 | 615 | [mIndex24Icon] 616 | Measure=Plugin 617 | Plugin=FileView 618 | Path=[mPath] 619 | IconPath="#@#icons\icon23.ico" 620 | Type=Icon 621 | IconSize=small 622 | Index=24 623 | Group=Children 624 | 625 | [mIndex25Icon] 626 | Measure=Plugin 627 | Plugin=FileView 628 | Path=[mPath] 629 | IconPath="#@#icons\icon24.ico" 630 | Type=Icon 631 | IconSize=small 632 | Index=25 633 | Group=Children 634 | 635 | ;----------------------------------- 636 | ; Apps 637 | ;----------------------------------- 638 | 639 | [Index2Info] 640 | Meter=String 641 | MeasureName=mIndex2Name 642 | Mouseoveraction=[!setoption Index2Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 643 | Mouseleaveaction=[!setoption Index2Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 644 | LeftMouseUpAction=[!CommandMeasure mIndex2Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 645 | RightMouseUpAction=[!CommandMeasure mIndex2Name "Open"] 646 | MeterStyle=textstyle | infostyle 647 | Y=30 648 | 649 | [Index3Info] 650 | Meter=String 651 | MeasureName=mIndex3Name 652 | Mouseoveraction=[!setoption Index3Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 653 | Mouseleaveaction=[!setoption Index3Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 654 | LeftMouseUpAction=[!CommandMeasure mIndex3Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 655 | RightMouseUpAction=[!CommandMeasure mIndex3Name "Open"] 656 | MeterStyle=textstyle | infostyle 657 | 658 | [Index4Info] 659 | Meter=String 660 | MeasureName=mIndex4Name 661 | Mouseoveraction=[!setoption Index4Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 662 | Mouseleaveaction=[!setoption Index4Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 663 | LeftMouseUpAction=[!CommandMeasure mIndex4Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 664 | RightMouseUpAction=[!CommandMeasure mIndex4Name "Open"] 665 | MeterStyle=textstyle | infostyle 666 | 667 | [Index5Info] 668 | Meter=String 669 | MeasureName=mIndex5Name 670 | Mouseoveraction=[!setoption Index5Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 671 | Mouseleaveaction=[!setoption Index5Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 672 | LeftMouseUpAction=[!CommandMeasure mIndex5Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 673 | RightMouseUpAction=[!CommandMeasure mIndex5Name "Open"] 674 | MeterStyle=textstyle | infostyle 675 | 676 | [Index6Info] 677 | Meter=String 678 | MeasureName=mIndex6Name 679 | Mouseoveraction=[!setoption Index6Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 680 | Mouseleaveaction=[!setoption Index6Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 681 | LeftMouseUpAction=[!CommandMeasure mIndex6Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 682 | RightMouseUpAction=[!CommandMeasure mIndex6Name "Open"] 683 | MeterStyle=textstyle | infostyle 684 | 685 | [Index7Info] 686 | Meter=String 687 | MeasureName=mIndex7Name 688 | Mouseoveraction=[!setoption Index7Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 689 | Mouseleaveaction=[!setoption Index7Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 690 | LeftMouseUpAction=[!CommandMeasure mIndex7Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 691 | RightMouseUpAction=[!CommandMeasure mIndex7Name "Open"] 692 | MeterStyle=textstyle | infostyle 693 | 694 | [Index8Info] 695 | Meter=String 696 | MeasureName=mIndex8Name 697 | Mouseoveraction=[!setoption Index8Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 698 | Mouseleaveaction=[!setoption Index8Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 699 | LeftMouseUpAction=[!CommandMeasure mIndex8Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 700 | RightMouseUpAction=[!CommandMeasure mIndex8Name "Open"] 701 | MeterStyle=textstyle | infostyle 702 | 703 | [Index9Info] 704 | Meter=String 705 | MeasureName=mIndex9Name 706 | Mouseoveraction=[!setoption Index9Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 707 | Mouseleaveaction=[!setoption Index9Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 708 | LeftMouseUpAction=[!CommandMeasure mIndex9Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 709 | RightMouseUpAction=[!CommandMeasure mIndex9Name "Open"] 710 | MeterStyle=textstyle | infostyle 711 | 712 | [Index10Info] 713 | Meter=String 714 | MeasureName=mIndex10Name 715 | Mouseoveraction=[!setoption Index10Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 716 | Mouseleaveaction=[!setoption Index10Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 717 | LeftMouseUpAction=[!CommandMeasure mIndex10Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 718 | RightMouseUpAction=[!CommandMeasure mIndex10Name "Open"] 719 | MeterStyle=textstyle | infostyle 720 | 721 | [Index11Info] 722 | Meter=String 723 | MeasureName=mIndex11Name 724 | Mouseoveraction=[!setoption Index11Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 725 | Mouseleaveaction=[!setoption Index11Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 726 | LeftMouseUpAction=[!CommandMeasure mIndex11Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 727 | RightMouseUpAction=[!CommandMeasure mIndex11Name "Open"] 728 | MeterStyle=textstyle | infostyle 729 | 730 | [Index12Info] 731 | Meter=String 732 | MeasureName=mIndex12Name 733 | Mouseoveraction=[!setoption Index12Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 734 | Mouseleaveaction=[!setoption Index12Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 735 | LeftMouseUpAction=[!CommandMeasure mIndex12Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 736 | RightMouseUpAction=[!CommandMeasure mIndex12Name "Open"] 737 | MeterStyle=textstyle | infostyle 738 | 739 | [Index13Info] 740 | Meter=String 741 | MeasureName=mIndex13Name 742 | Mouseoveraction=[!setoption Index13Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 743 | Mouseleaveaction=[!setoption Index13Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 744 | LeftMouseUpAction=[!CommandMeasure mIndex13Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 745 | RightMouseUpAction=[!CommandMeasure mIndex3Name "Open"] 746 | MeterStyle=textstyle | infostyle 747 | 748 | [Index14Info] 749 | Meter=String 750 | MeasureName=mIndex14Name 751 | Mouseoveraction=[!setoption Index14Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 752 | Mouseleaveaction=[!setoption Index14Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 753 | LeftMouseUpAction=[!CommandMeasure mIndex14Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 754 | RightMouseUpAction=[!CommandMeasure mIndex14Name "Open"] 755 | MeterStyle=textstyle | infostyle 756 | 757 | [Index15Info] 758 | Meter=String 759 | MeasureName=mIndex15Name 760 | Mouseoveraction=[!setoption Index15Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 761 | Mouseleaveaction=[!setoption Index15Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 762 | LeftMouseUpAction=[!CommandMeasure mIndex15Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 763 | RightMouseUpAction=[!CommandMeasure mIndex15Name "Open"] 764 | MeterStyle=textstyle | infostyle 765 | 766 | [Index16Info] 767 | Meter=String 768 | MeasureName=mIndex16Name 769 | Mouseoveraction=[!setoption Index16Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 770 | Mouseleaveaction=[!setoption Index16Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 771 | LeftMouseUpAction=[!CommandMeasure mIndex16Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 772 | RightMouseUpAction=[!CommandMeasure mIndex16Name "Open"] 773 | MeterStyle=textstyle | infostyle 774 | 775 | [Index17Info] 776 | Meter=String 777 | MeasureName=mIndex17Name 778 | Mouseoveraction=[!setoption Index17Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 779 | Mouseleaveaction=[!setoption Index17Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 780 | LeftMouseUpAction=[!CommandMeasure mIndex17Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 781 | RightMouseUpAction=[!CommandMeasure mIndex17Name "Open"] 782 | MeterStyle=textstyle | infostyle 783 | 784 | [Index18Info] 785 | Meter=String 786 | MeasureName=mIndex18Name 787 | Mouseoveraction=[!setoption Index18Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 788 | Mouseleaveaction=[!setoption Index18Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 789 | LeftMouseUpAction=[!CommandMeasure mIndex18Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 790 | RightMouseUpAction=[!CommandMeasure mIndex18Name "Open"] 791 | MeterStyle=textstyle | infostyle 792 | 793 | [Index19Info] 794 | Meter=String 795 | MeasureName=mIndex19Name 796 | Mouseoveraction=[!setoption Index19Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 797 | Mouseleaveaction=[!setoption Index19Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 798 | LeftMouseUpAction=[!CommandMeasure mIndex19Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 799 | RightMouseUpAction=[!CommandMeasure mIndex19Name "Open"] 800 | MeterStyle=textstyle | infostyle 801 | 802 | [Index20Info] 803 | Meter=String 804 | MeasureName=mIndex20Name 805 | Mouseoveraction=[!setoption Index20Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 806 | Mouseleaveaction=[!setoption Index20Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 807 | LeftMouseUpAction=[!CommandMeasure mIndex20Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 808 | RightMouseUpAction=[!CommandMeasure mIndex20Name "Open"] 809 | MeterStyle=textstyle | infostyle 810 | 811 | [Index21Info] 812 | Meter=String 813 | MeasureName=mIndex21Name 814 | Mouseoveraction=[!setoption Index21Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 815 | Mouseleaveaction=[!setoption Index21Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 816 | LeftMouseUpAction=[!CommandMeasure mIndex21Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 817 | RightMouseUpAction=[!CommandMeasure mIndex21Name "Open"] 818 | MeterStyle=textstyle | infostyle 819 | 820 | [Index22Info] 821 | Meter=String 822 | MeasureName=mIndex22Name 823 | Mouseoveraction=[!setoption Index22Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 824 | Mouseleaveaction=[!setoption Index22Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 825 | LeftMouseUpAction=[!CommandMeasure mIndex22Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 826 | RightMouseUpAction=[!CommandMeasure mIndex22Name "Open"] 827 | MeterStyle=textstyle | infostyle 828 | 829 | [Index23Info] 830 | Meter=String 831 | MeasureName=mIndex23Name 832 | Mouseoveraction=[!setoption Index23Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 833 | Mouseleaveaction=[!setoption Index23Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 834 | LeftMouseUpAction=[!CommandMeasure mIndex23Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 835 | RightMouseUpAction=[!CommandMeasure mIndex23Name "Open"] 836 | MeterStyle=textstyle | infostyle 837 | 838 | [Index24Info] 839 | Meter=String 840 | MeasureName=mIndex24Name 841 | Mouseoveraction=[!setoption Index24Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 842 | Mouseleaveaction=[!setoption Index24Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 843 | LeftMouseUpAction=[!CommandMeasure mIndex24Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 844 | RightMouseUpAction=[!CommandMeasure mIndex24Name "Open"] 845 | MeterStyle=textstyle | infostyle 846 | 847 | [Index25Info] 848 | Meter=String 849 | MeasureName=mIndex25Name 850 | Mouseoveraction=[!setoption Index25Info fontcolor "#hovercolor#"][!UpdateMeter *][!Redraw] 851 | Mouseleaveaction=[!setoption Index25Info fontcolor "#fontcolor#"][!UpdateMeter *][!Redraw] 852 | LeftMouseUpAction=[!CommandMeasure mIndex25Name "FollowPath"][!UpdateMeasure mPath][!UpdateMeasureGroup Children][!UpdateMeter *][!Redraw] 853 | RightMouseUpAction=[!CommandMeasure mIndex25Name "Open"] 854 | MeterStyle=textstyle | infostyle 855 | 856 | ;----------------------------------- 857 | ; Apps Icon 858 | ;----------------------------------- 859 | 860 | [Index2Icon] 861 | Meter=Image 862 | MeasureName=mIndex2Icon 863 | MeterStyle=IconStyle 864 | Y=30 865 | 866 | [Index3Icon] 867 | Meter=Image 868 | MeasureName=mIndex3Icon 869 | MeterStyle=IconStyle 870 | 871 | [Index4Icon] 872 | Meter=Image 873 | MeasureName=mIndex4Icon 874 | MeterStyle=IconStyle 875 | 876 | [Index5Icon] 877 | Meter=Image 878 | MeasureName=mIndex5Icon 879 | MeterStyle=IconStyle 880 | 881 | [Index6Icon] 882 | Meter=Image 883 | MeasureName=mIndex6Icon 884 | MeterStyle=IconStyle 885 | 886 | [Index7Icon] 887 | Meter=Image 888 | MeasureName=mIndex7Icon 889 | MeterStyle=IconStyle 890 | 891 | [Index8Icon] 892 | Meter=Image 893 | MeasureName=mIndex8Icon 894 | MeterStyle=IconStyle 895 | 896 | [Index9Icon] 897 | Meter=Image 898 | MeasureName=mIndex9Icon 899 | MeterStyle=IconStyle 900 | 901 | [Index10Icon] 902 | Meter=Image 903 | MeasureName=mIndex10Icon 904 | MeterStyle=IconStyle 905 | 906 | [Index11Icon] 907 | Meter=Image 908 | MeasureName=mIndex11Icon 909 | MeterStyle=IconStyle 910 | 911 | [Index12Icon] 912 | Meter=Image 913 | MeasureName=mIndex12Icon 914 | MeterStyle=IconStyle 915 | 916 | [Index13Icon] 917 | Meter=Image 918 | MeasureName=mIndex13Icon 919 | MeterStyle=IconStyle 920 | 921 | [Index14Icon] 922 | Meter=Image 923 | MeasureName=mIndex14Icon 924 | MeterStyle=IconStyle 925 | 926 | [Index15Icon] 927 | Meter=Image 928 | MeasureName=mIndex15Icon 929 | MeterStyle=IconStyle 930 | 931 | [Index16Icon] 932 | Meter=Image 933 | MeasureName=mIndex16Icon 934 | MeterStyle=IconStyle 935 | 936 | [Index17Icon] 937 | Meter=Image 938 | MeasureName=mIndex17Icon 939 | MeterStyle=IconStyle 940 | 941 | [Index18Icon] 942 | Meter=Image 943 | MeasureName=mIndex18Icon 944 | MeterStyle=IconStyle 945 | 946 | [Index19Icon] 947 | Meter=Image 948 | MeasureName=mIndex19Icon 949 | MeterStyle=IconStyle 950 | 951 | [Index20Icon] 952 | Meter=Image 953 | MeasureName=mIndex20Icon 954 | MeterStyle=IconStyle 955 | 956 | [Index21Icon] 957 | Meter=Image 958 | MeasureName=mIndex21Icon 959 | MeterStyle=IconStyle 960 | 961 | [Index22Icon] 962 | Meter=Image 963 | MeasureName=mIndex22Icon 964 | MeterStyle=IconStyle 965 | 966 | [Index23Icon] 967 | Meter=Image 968 | MeasureName=mIndex23Icon 969 | MeterStyle=IconStyle 970 | 971 | [Index24Icon] 972 | Meter=Image 973 | MeasureName=mIndex24Icon 974 | MeterStyle=IconStyle 975 | 976 | [Index25Icon] 977 | Meter=Image 978 | MeasureName=mIndex25Icon 979 | MeterStyle=IconStyle 980 | --------------------------------------------------------------------------------