mirror of
https://github.com/EndPwnArchive/EndPwn3Plugins.git
synced 2024-08-14 23:57:06 +00:00
21 lines
No EOL
717 B
JavaScript
21 lines
No EOL
717 B
JavaScript
bdwatcher = null, bdtag = null, setupCSS = function (n) {
|
|
var e = fs.readFileSync(n, "utf-8");
|
|
null === bdtag && (bdtag = document.createElement("style"), document.head.appendChild(bdtag)), bdtag.innerHTML = e, null === bdwatcher && (bdwatcher = fs.watch(n, {
|
|
encoding: "utf-8"
|
|
}, function (e, w) {
|
|
if ("change" === e) {
|
|
var i = fs.readFileSync(n, "utf-8");
|
|
bdtag.innerHTML = i
|
|
}
|
|
}))
|
|
};
|
|
|
|
exports.manifest = {
|
|
author: "dr1ft",
|
|
name: "BeautifulDiscord Port",
|
|
description: "Allows CSS to be imported and updated on the fly."
|
|
},
|
|
exports.start = () => {
|
|
if (fs.existsSync($api.data + 'style.css'))
|
|
setupCSS($api.data + 'style.css');
|
|
} |