Files
Linux.js---javascript-OS/rootfs overrides/etc/init.d/startupSound.js
T

14 lines
244 B
JavaScript

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