honey/js/UI/Main/Main.js
2023-10-14 02:17:58 +02:00

28 lines
665 B
JavaScript

import App from "../../App"
export default class Main {
constructor() {
this.app = new App()
this.config = this.app.config
this.init()
}
init() {
document.title = this.config.get("name")
document.getElementById("favicon").href = this.config.get("icon")
this.initBackgrounds()
}
initBackgrounds() {
this.backgrounds = document.getElementById("background")
for (let i = 0; i < 2; i++) {
let img = document.createElement("img")
this.backgrounds.appendChild(img)
}
this.backgrounds = this.backgrounds.children
this.backgrounds[0].src = this.config.get("wallpaper")
this.backgrounds[1].src = this.config.get("wallpaper_dark")
}
}