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\"", () => {}); } }