Change title of website based on focus
window.onblur = window.onfocus = () => {
window.document.title = document.visibilityState == "visible" ? "O" : "O";
}; window.onblur = window.onfocus = () => {
window.document.title = document.visibilityState == "visible" ? "O" : "O";
};