This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Declare the permission for body sensor --> | |
<uses-permission android:name="android.permission.BODY_SENSORS" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Module.new do | |
if command_exist? "afplay" | |
Plugin::create(:mac_sound).add_event(:play_sound){ |filename, &stop| | |
SerialThread.new { | |
bg_system("afplay", filename) if FileTest.exist?(filename) } | |
stop.call | |
} | |
end | |
end |