1
0
Fork 0
pompup/internal/installers/unity_hub.go

16 lines
313 B
Go

package installers
import "github.com/developomp/pompup/internal/wrapper"
func init() {
register(&Installer{
Name: "Unity Hub",
Desc: "Unity Installation manager",
Setup: func() {
wrapper.FlatpakOnce("com.unity.UnityHub")
},
Reminders: []string{
"Change Unity Hub editors location",
},
})
}