
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
proxy-git.cwkhome.fun/mt-inside/go-openrgb
Golang SDK for OpenRGB
Uses the lm-sensors (linux monitoring sensors) pacakge, on top of the hwmon kernel feature.
openrgb --server
)go get github.com/mt-inside/go-openrgb
This module calls OpenRGB over the network.
package main
import (
"os"
"github.com/lucasb-eyer/go-colorful"
"github.com/mt-inside/go-openrgb/pkg/model"
"github.com/mt-inside/go-usvc"
)
func main() {
log := usvc.GetLogger(false, 10)
m, err := model.NewModel(log, "localhost:6742", "go-openrgb basic example")
if err != nil {
log.Error(err, "Couldn't synchronise devices and colors from server")
os.Exit(1)
}
m.SetColor(colorful.Color{R: 1, G: 0, B: 0})
m.Devices.MustByName("B550 Vision D").MustGetDirectModeAndActivate().SetColor(colorful.Color{R: 0, G: 1, B: 0})
m.Devices.MustByName("B550 Vision D").MustGetDirectModeAndActivate().Zones.MustByName("D_LED1 Bottom").SetColor(colorful.Color{R: 0, G: 0, B: 1})
m.Devices.MustByName("B550 Vision D").MustGetDirectModeAndActivate().Zones.MustByName("D_LED1 Bottom").Leds[0].SetColor(colorful.Color{R: 1, G: 1, B: 1})
m.Diff()
err = m.Thither()
if err != nil {
log.Error(err, "Couldn't synchronise colors to server")
os.Exit(1)
}
}
PRs welcome!
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.