blob: 7b7d6dee41610fbf8bed3d1af0d8a4b2614d934c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
}
|