Files
Linux.js---javascript-OS/rootfs overrides/etc/init.d/startupSound.js
T
2022-02-17 14:19:08 +01:00

14 lines
247 B
JavaScript

const audio = require('../../core/audio')
async function init() {
audio('/chibrax/sheeebr.wav')
}
const after = [ "filesystem.js" ] // list of init script to load before
const before = []
module.exports = {
init,
after,
before
}