-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create WiFiTransitions.lua #1
base: master
Are you sure you want to change the base?
Conversation
you can do your action as function myCommand()
hs.notify.show("Left Home Wifi", "Volume set to 0%", "")
hs.audiodevice.defaultOutputDevice():setVolume(0)
local appName = 'VLC'
hs.application.find(appName):kill()
end and use it: actions = {
{
from = "Wifi1",
fn = function(_, _, prev_ssid, new_ssid)
myCommand()
end
}, |
Thanks for all the help.
|
did you installed the spoon install script like described in the comments? other idea:
|
what is in your line 19 of is it possible that you post your full code snippets and full error message? |
No description provided.