TRIGGERcmd
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Matt Packwood
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 25
    • Best 1
    • Controversial 0
    • Groups 0

    Topics created by Matt Packwood

    • Matt PackwoodM

      Hangs on Boot

      General Discussion
      • • • Matt Packwood
      1
      0
      Votes
      1
      Posts
      110
      Views

      No one has replied

    • Matt PackwoodM

      Clashing with Sophos AntiVirus

      Mac
      • • • Matt Packwood
      2
      0
      Votes
      2
      Posts
      222
      Views

      RussR

      @Matt-Packwood, in this post you solved it by excluding the /Applications/TRIGGERcmdAgent.app folder from the Sophos scans.

      Did that stop working?

    • Matt PackwoodM

      Freezing in Monterey

      Mac
      • • • Matt Packwood
      35
      0
      Votes
      35
      Posts
      3.6k
      Views

      Matt PackwoodM

      @russ I saw that, many thanks!

    • Matt PackwoodM

      App "Stuck"

      General Discussion
      • • • Matt Packwood
      2
      0
      Votes
      2
      Posts
      208
      Views

      RussR

      @Matt-Packwood, can you paste a screenshot here? Not sure yet.

    • Matt PackwoodM

      Run a shell script on a Mac

      Mac
      • • • Matt Packwood
      3
      0
      Votes
      3
      Posts
      1.2k
      Views

      RussR

      @CheddarLifeForm and @Matt-Packwood,

      You don't need to escape forward slashes yourself if you use the GUI editor. Just enter the paths like this: ~/script.sh (to refer to a script in your home directory). You only need to worry about escaping backslashes if you're editing your commands.json file directly.

      Here are some tips:
      Make your script executable with a command like this:
      chmod +x script.sh

      The ~ charactor refers to your home folder, so you can put scripts in folders in your home folder, and refer to them in the GUI editor like this: ~/scripts/myscript.sh

      Test your script from the bash prompt before testing in the GUI editor, and test using the green Play button in the GUI editor before testing using the Trigger button on the website, and test using that Trigger button before using something like Alexa.

      If you want to see the output from your commands, write it to a log file with >> like this:
      echo Hi >> ~/log.txt