From d25bdc9f3f3f6547d6c023ed7e192fc5913e9bbc Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 3 Jul 2022 14:23:25 +0200 Subject: Initial commit --- Library/SDK/Modules/Strawberry.Audio.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Library/SDK/Modules/Strawberry.Audio.js (limited to 'Library/SDK/Modules/Strawberry.Audio.js') diff --git a/Library/SDK/Modules/Strawberry.Audio.js b/Library/SDK/Modules/Strawberry.Audio.js new file mode 100644 index 0000000..0b177a5 --- /dev/null +++ b/Library/SDK/Modules/Strawberry.Audio.js @@ -0,0 +1,7 @@ +const child_process = require('child_process'); + +module.exports = { + SystemSound: (file) => { + child_process.exec((require('os').platform() === "darwin" ? "afplay" : "aplay") + " \"" + global._STRAWBERRY_SYSTEM_ROOT + "/Sounds/" + file + ".wav\"", () => {}); + } +} \ No newline at end of file -- cgit