@Stanisław-Grzybołowski, I sent it just now.
administrators
Posts
-
RE: Invoice for subscription
-
RE: I am unable to cancel my subscription
@Marcus-Mortensen, I found your Paypal TRIGGERcmd subscription and cancelled it for you.
-
Alexa Wake-on-LAN
I made this video to describe the new feature:
https://www.youtube.com/watch?v=NKWxyIQT4G8More info here:
https://www.triggercmd.com/forum/topic/3373/new-computer-device-option-for-triggercmd-smart-home-alexa-skill-users?_=1786117895659-
Enable Wake-On-Lan in your BIOS or UEFI.
-
Enable Wake-On-Lan in the Agent.

-
Enable the computer Alexa smart home device.

-
-
RE: Cannot launch apps
@Luca-Coraggio, the "TRIGGERcmd Smart Home" Alexa skill is the one you want.
Do you have a device for each command listed in your device list in your Alexa app? You'll need that because that's what you're telling Alexa to turn on/off.
Please try changing your voice word for the Steam command to just "steam" so you can say, "Alexa, turn on steam", or in your case (Italian), "Alexa, avvia steam".
-
RE: Error while installing the triggercmdagent
@Hannibal I see an error in the json. There should be a quote (") at the beginning of the word background.
-
RE: Who actually is behind triggercmd?
@rsoane, it seems to be up for me. Can you send me a screenshot of what you see?
-
RE: Error while installing the triggercmdagent
@Hannibal, I see the problem. I told you /usr/lib/triggercmdagent which is the path on Ubuntu, not Raspberry Pi. Sorry about that. I corrected the "next steps" above to match the instructions here.
It should look like this when you run the triggercmdagent command as root:
pi@fe5978dee0e5:~$ sudo su - root@fe5978dee0e5:~# triggercmdagent Run installdaemon.sh to install the triggercmdagent daemon so it runs during boot Daemon install: false No token exists. Login to request one. prompt: token:Then run this to install the background agent that will startup as root during boot:
/usr/share/triggercmdagent/app/src/installdaemon.shThen edit /root/.TRIGGERcmdData/commands.json and make sure your commands have ground = background.
-
New "Computer" device option for TRIGGERcmd Smart Home Alexa skill users
If you check the new Create Alexa Smart Home device for this computer checkbox, you'll get an Alexa Smart Home device that you can use to:
- "Alexa, set X volume to 50 percent" - run the volume control command with 50 (for example) as the parameter
- "Alexa, unmute X" - runs the mute control command with unmute or mute as the parameter
- "Alexa, turn on X" - sends a Wake-on-LAN magic packet from your local Echo device to turn on your computer
- "Alexa, turn off X" - runs the shutdown command
X is your computer's voice word, or its name if you don't have a voice word for it.

To enable Wake-On-LAN, enable it in your BIOS and test it, then enable it like this:


-
RE: [BUG] I`m adding new commands and it`s executes the command but Alexas threats as a doorbell
Awesome @Vinicius-Gimenez-Figuerola. Thanks for letting me know it's working for you.
-
You could have Claude run a command each time it finishes a prompt.
You could have Claude run a command each time it finishes a prompt.

One idea: turn a light green when it's finished, and turn it red when it's working on something.
I tend to use the notepad command when I test parameters.
[repo path]\.claude\settings.json:
{ "hooks": { "UserPromptSubmit": [ { "hooks": [ { "type": "mcp_tool", "server": "triggercmd", "tool": "run_command", "input": { "computer": "New Laptop", "command": "Notepad", "parameters": "started" } } ] } ], "Stop": [ { "hooks": [ { "type": "mcp_tool", "server": "triggercmd", "tool": "run_command", "input": { "computer": "New Laptop", "command": "Notepad", "parameters": "done" } } ] } ] } }