1
0
Fork 0

feat: add CPU-X installer

This commit is contained in:
Kim, Jimin 2024-04-15 16:05:46 +09:00
parent 22bff35202
commit 152b9ee4c0
Signed by: pomp
GPG key ID: 2B516173EDD492EB

View file

@ -0,0 +1,13 @@
package installers
import "github.com/developomp/pompup/internal/wrapper"
func init() {
register(&Installer{
Name: "CPU-X",
Desc: "CPU-Z for Linux",
Setup: func() {
wrapper.FlatpakOnce("io.github.thetumultuousunicornofdarkness.cpu-x")
},
})
}