Restarting the Indigo Server

Posted on
Fri Jul 15, 2016 8:24 am
Radjin offline
User avatar
Posts: 146
Joined: May 13, 2015

Restarting the Indigo Server

Is there a command or script I can use to restart the Indigo Server?

It's not rocket science...

Posted on
Fri Jul 15, 2016 8:53 am
Different Computers offline
User avatar
Posts: 2533
Joined: Jan 02, 2016
Location: East Coast

Re: Restarting the Indigo Server

Code: Select all
OPEN(1)                   BSD General Commands Manual                  OPEN(1)

NAME
     open -- open files and directories

SYNOPSIS
     open [-e] [-t] [-f] [-F] [-W] [-R] [-n] [-g] [-h] [-b bundle_identifier]
          [-a application] file ... [--args arg1 ...]

DESCRIPTION
     The open command opens a file (or a directory or URL), just as if you had
     double-clicked the file's icon. If no application name is specified, the
     default application as determined via LaunchServices is used to open the
     specified files.

     If the file is in the form of a URL, the file will be opened as a URL.

     You can specify one or more file names (or pathnames), which are inter-
     preted relative to the shell or Terminal window's current working direc-
     tory. For example, the following command would open all Word files in the
     current working directory:

     open *.doc

     Opened applications inherit environment variables just as if you had
     launched the application directly through its full path.  This behavior
     was also present in Tiger.

     The options are as follows:

     -a application
         Specifies the application to use for opening the file

     -b bundle_indentifier
         Specifies the bundle identifier for the application to use when open-
         ing the file

     -e  Causes the file to be opened with /Applications/TextEdit

     -t  Causes the file to be opened with the default text editor, as deter-
         mined via LaunchServices


so, what you need is

Code: Select all
open /Library/Application\ Support/Perceptive\ Automation/Indigo\ 6/IndigoServer

SmartThings refugee, so happy to be on Indigo. Monterey on a base M1 Mini w/Harmony Hub, Hue, DomoPad, Dynamic URL, Device Extensions, HomeKitLink, Grafana, Plex, uniFAP, Fantastic Weather, Nanoleaf, LED Simple Effects, Bond Home, Camect.

Posted on
Fri Jul 15, 2016 10:48 am
jay (support) offline
Site Admin
User avatar
Posts: 18200
Joined: Mar 19, 2008
Location: Austin, Texas

Re: Restarting the Indigo Server

This AppleScript will work, assuming you don't hit the 600 error:

Code: Select all
tell application "IndigoServer"
   quit
end tell

# Give the server some time to fully shut down
delay 10

tell application "IndigoServer"
   activate
end tell

Jay (Indigo Support)
Twitter | Facebook | LinkedIn

Posted on
Fri Jul 15, 2016 11:33 am
Radjin offline
User avatar
Posts: 146
Joined: May 13, 2015

Re: Restarting the Indigo Server

Perfect, thank you Jay.

It's not rocket science...

Page 1 of 1

Who is online

Users browsing this forum: No registered users and 2 guests

cron