go-socks5-ssh-proxy/vendor/github.com/emersion/go-autostart/autostart.go

14 lines
288 B
Go

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
}