13 lines
242 B
Go
13 lines
242 B
Go
package installers
|
|
|
|
import "github.com/developomp/pompup/internal/wrapper"
|
|
|
|
func init() {
|
|
register(&Installer{
|
|
Name: "pop! gtk theme",
|
|
Desc: "GTK theme made by system76",
|
|
Setup: func() {
|
|
wrapper.ParuOnce("pop-gtk-theme")
|
|
},
|
|
})
|
|
}
|