Codebase list golang-github-protonmail-go-autostart / master autostart.go
master

Tree @master (Download .tar.gz)

autostart.go @masterraw · history · blame

package autostart

// An application that will be started when the user logs in.
type App struct {
	// Unique identifier for the app.
	Name string
	// The command to execute, followed by its arguments.
	Exec []string
	// The app name.
	DisplayName string
	// The app icon.
	Icon string
}