Files
aerc-inline-images/lib/hooks/aerc-shutdown.go
T
2026-04-07 19:54:54 -04:00

23 lines
324 B
Go

package hooks
import (
"fmt"
"time"
"git.sr.ht/~rjarry/aerc/config"
)
type AercShutdown struct {
Lifetime time.Duration
}
func (a *AercShutdown) Cmd() string {
return config.Hooks.AercShutdown
}
func (a *AercShutdown) Env() []string {
return []string{
fmt.Sprintf("AERC_LIFETIME=%s", a.Lifetime.String()),
}
}