(show = true)
| 798 | } |
| 799 | |
| 800 | function toggleCursor(show = true) { |
| 801 | fad = document.getElementById("full-app-display"); |
| 802 | |
| 803 | if (!fad) { |
| 804 | setTimeout(toggleCursor, 300, show); |
| 805 | return; |
| 806 | } |
| 807 | |
| 808 | if (show) { |
| 809 | document.removeEventListener("mousemove", eventListener); |
| 810 | showCursor(); |
| 811 | } else { |
| 812 | cursorTimeout = setTimeout(hideCursor, 2000); |
| 813 | document.addEventListener("mousemove", eventListener); |
| 814 | } |
| 815 | } |
| 816 | |
| 817 | async function activate() { |
| 818 | if (!Spicetify.Player.data) return; |
no test coverage detected