It is currently March 29th, 2024, 2:26 pm

Looking for the names of 2 plugins

Get help with creating, editing & fixing problems with skins
User avatar
Virginityrocks
Posts: 478
Joined: February 26th, 2011, 10:22 pm

Looking for the names of 2 plugins

Post by Virginityrocks »

Looking for the names of 2 plugins to do a few things...

1. a plugin to display the names of all running applications
2. a plugin to show the small system tray window at a specific X Y location
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: Looking for the names of 2 plugins

Post by balala »

Virginityrocks wrote:Looking for the names of 2 plugins to do a few things...

1. a plugin to display the names of all running applications
I don't think a such plugin exists (or at least I don't know one), but probably it nor is needed. An appropriate command line can be used and it can be ran through a RunCommand plugin measure:

Code: Select all

[Rainmeter]
Update=-1
DynamicWindowSize=1
AccurateText=1
LeftMouseUpAction=[!CommandMeasure MeasureRun "Run"]

[MeasureRun]
Measure=Plugin
Plugin=RunCommand
Parameter=tasklist /fi "STATUS eq RUNNING" /fo csv
State=Hide
OutputType=ANSI
OutputFile=#@#Proba.txt
RegExpSubstitute=1
Substitute="\n":"#CRLF#",'"(.*)",".*",".*",".*",".*"':"\1"
FinishAction=[!UpdateMeter "MeterRunning"][!Redraw]

[MeterRun]
Meter=String
FontSize=11
FontColor=255,255,255,255
SolidColor=47,47,47,255
Padding=5,5,5,5
AntiAlias=1
Text=Click to Run
LeftMouseUpAction=[!CommandMeasure MeasureRun "Run"]

[MeterRunning]
Meter=STRING
MeasureName=MeasureRun
X=0r
Y=0R
Padding=15,5,15,5
FontColor=220,220,220
SolidColor=0,0,0,150
FontSize=8
FontFace=Segoe UI
StringStyle=BOLD
StringAlign=LEFT
AntiAlias=1
Text=%1
User avatar
Active Colors
Moderator
Posts: 1251
Joined: February 16th, 2012, 3:32 am
Location: Berlin, Germany

Re: Looking for the names of 2 plugins

Post by Active Colors »

Virginityrocks wrote:2. a plugin to show the small system tray window at a specific X Y location
I would like to know as well. But I know this AutoHotKey script which shows tray menu popup next to current mouse position. Only concern with it is that, because it shows only popup it omits icons that are on the taskbar.
You do not have the required permissions to view the files attached to this post.