ixjf / MSIRGB

Alternative to MSI Mystic Light for controlling motherboard LEDs, without the fixed 7 colour limitation.
ISC License
398 stars 53 forks source link

Add command line parameters to control LEDs using third-party scripts #137

Closed alchemistake closed 3 years ago

alchemistake commented 4 years ago

I want to write a script to enable/disable light and as the luck goes I have to use 2 different apps for 2 different lights (AMD Wraith Prism + MSI MB)

Can I use this software from command line?

ixjf commented 4 years ago

Currently, no.

ixjf commented 3 years ago

Hey, would it work if you could instead execute commands from the Lua script? You can use os.execute to execute command line code.

EDIT: The reason I chose to implement scripts rather than allow using from command line was to minimize the overhead of starting a process very often. This, unfortunately, has the downside that you can't sync it with other programs as it is now (but hopefully you will be able to call os.execute in a future release of MSIRGB inside Lua scripts).

ixjf commented 3 years ago

Anyone has any opinions on this?