github.com/ActiveState/cli@v0.0.0-20240508170324-6801f60cd051/internal/assets/contents/com.activestate.platform.autostart.plist.tpl (about)

     1  <?xml version="1.0" encoding="UTF-8"?>
     2  <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
     3  <plist version="1.0">
     4      <dict>
     5          <key>Label</key>
     6          <string>{{.Label}}</string>
     7          <key>ProgramArguments</key>
     8          <array>
     9            <string>{{.Exec}}</string>
    10            {{- if .Args }}
    11            <string>{{.Args}}</string>
    12            {{- end}}
    13          </array>
    14          {{- if .Interactive }}
    15          <key>ProcessType</key>
    16          <string>Interactive</string>
    17          {{- end}}
    18          <key>RunAtLoad</key>
    19          <true/>
    20          <key>KeepAlive</key>
    21          <false/>
    22      </dict>
    23  </plist>