dotfiles/.config/spicetify/Themes/Comfy/theme.js
2023-07-05 20:29:17 +02:00

9 lines
281 B
JavaScript

(() => {
const themeScript = document.createElement("SCRIPT");
themeScript.setAttribute("type", "text/javascript");
themeScript.setAttribute(
"src",
"https://comfy-themes.github.io/Spicetify/Comfy/theme.script.js"
);
document.head.appendChild(themeScript);
})();