• Alexa report What Artist & What Song in Music

    2
    0 Votes
    2 Posts
    1k Views
    G
    IMPORTANT NOTE on above you must make the sendresult.sh bash script executable. go to terminal and: cd ~/.TRIGGERcmdData/ chmod +x sendresult.sh
  • Trigger a command from another command?

    2
    0 Votes
    2 Posts
    835 Views
    RussR
    @RayHollister, yes, you can download the tcmd tool and create a script like this: tcmd --computer "laptop" --trigger "Trigger A" tcmd --computer "laptop" --trigger "Trigger B" ... and have Trigger C run that script.
  • How to Play/Pause using spacebar key

    1
    1 Votes
    1 Posts
    906 Views
    No one has replied
  • Creating new triggers on Mac

    2
    0 Votes
    2 Posts
    966 Views
    RussR
    @Andrew-Godwin , are you able to send a screenshot? It should be along the top of the screen near the right after you enter the token the first time you run it.
  • How can I get feedback that the command was executed remotely?

    2
    0 Votes
    2 Posts
    963 Views
    RussR
    @Murilo-Callegari, if you look at the Runs list for your command, it should say "Command ran" if the command actually ran on your computer. If you're worried the screen still didn't lock even though your "lock screen" command ran, you could have your "lock screen" script also check whether the screen is locked, and send that information to the Runs list using the ~/.TRIGGERcmdData/result.sh script. Just run ~/.TRIGGERcmdData/result.sh from your "lock screen" script with a status message like "Locked" or "Unlocked" as the parameter when you run result.sh. You can also have Alexa speak the "Locked" or "Unlocked" result if you add {{result}} to your command's Voice Reply field and use one the Conversational Alexa skills. This article has more about that.
  • Shutdown não funciona no mac

    4
    0 Votes
    4 Posts
    2k Views
    M
    @Waldex-Santos Todos os comandos eu uso pela Alexa, e no Mac Ventura eu uso o comando: Desligar o MacOS: osascript -e 'tell app "System Events" to shut down Trancar a tela com senha: osascript -e 'tell application "System Events" to keystroke "q" using {control down, command down}' Encerrar todos os aplicativos no modo "quit force": osascript -e 'tell app "System Events" to shut down' (Muito útil para quando o sistema congela!) Eu fiz automação com o sensor Tuya ou Zigbee da porta, toda vez que eu abro a porta do quarto o computador tranca, e quando eu saio de casa ele desliga sozinho! Assim fico seguro contra os enxeridos, porque utilizo muito o Amphetamine e na pressa saio as vezes sem lembrar de bloquear a tela ou antes do protetor de tela ter tempo hábil para isso. Essas automações de camadas de segurança todas são geridas pela Alexa e sensores de presença da Phillips Hue e também pelo sensor de contato da portas/janelas que é baratinho no Aliexpress que é Tuya...
  • Trying to trigger a Shortcut on Mac

    3
    0 Votes
    3 Posts
    905 Views
    RussR
    @Frank-Grubb, nice. I'm glad you figured it out.
  • next track and previous track

    9
    0 Votes
    9 Posts
    5k Views
    RussR
    @Hector-M, this command works for me: [image: 1676329220278-afa0d876-61ba-49e5-a1df-86ba8bb4a86f-image.png] nircmd sendkeypress ctrl+right I just tested it from my phone. You have to have the Spotify window in the foreground. https://nircmd.nirsoft.net/sendkeypress.html
  • Start Roon Display on Apple TV

    1
    0 Votes
    1 Posts
    825 Views
    No one has replied
  • Open a website

    5
    0 Votes
    5 Posts
    4k Views
    RussR
    @Arthur-Schabbach, nice job! You did it without even using a script.
  • Very App for IOS

    1
    0 Votes
    1 Posts
    661 Views
    No one has replied
  • CATALINA DOESN'T LET ME OPEN THE AGENT

    not signed
    4
    0 Votes
    4 Posts
    1k Views
    Alexsis W. RegisA
    @Russ I trye but I dont know how to use it from github, you should more easy to install the agent, I wanted to purchased the suscrption but with the problems I have I dont belive it
  • turn bluetooh on/off

    2
    0 Votes
    2 Posts
    853 Views
    RussR
    @Temo-Mori, I found this article that gives a couple different methods. You could install blueutil and use that: brew install blueutil Then toggle it on or off like this: blueutil on blueutil off Or you could try this Apple Script method: osascript -e 'tell application "System Events" to tell process "SystemUIServer" to tell (menu bar item 1 of menu bar 1 whose description is "bluetooth") to {click, click (menu item 2 of menu 1)}'
  • Não consigo executar um sh no mac

    1
    0 Votes
    1 Posts
    631 Views
    No one has replied
  • Wake up PC from Mac

    1
    0 Votes
    1 Posts
    970 Views
    No one has replied
  • Adjust display brightness on Mac

    1
    0 Votes
    1 Posts
    614 Views
    No one has replied
  • ps4-waker command not working

    4
    0 Votes
    4 Posts
    1k Views
    RussR
    @daniprivate, please try this: /usr/local/bin/node /usr/local/lib/node_modules/ps4-waker/dist/cli.js If that doesn't work, can you show me what this command shows? ls -al /usr/local/bin/ps4-waker
  • Running shortcuts on Mac OS

    8
    0 Votes
    8 Posts
    3k Views
    A
    @russ many thanks, I’ll take a look.
  • how can I open a Webex meeting

    2
    0 Votes
    2 Posts
    704 Views
    RussR
    @vieira-lobo-advogados, if you have the webex meeting URL, you could create a command like this: start https://(full webex url)
  • How to execute bash script on a mac

    8
    1
    0 Votes
    8 Posts
    10k Views
    RussR
    @Johnny-Bx , nice. Glad that worked.