#how do I stop this from popping up everytime I start spotify?
22 messages · Page 1 of 1 (latest)
You actually can but you'd need windows 7 to find out the classes or JS path and then you can just write element.remove() to remove it from the DOM
aaaa idk how to do that
spicetify enable devtools in cmd
Then spotify would launch
Inspect the container
Get the JS path or css selectors
And now
There are two options
You could set the display of the element to be none or
A very bad solution
Check every 100 milliseconds if that window exists and if it does, click on the dismiss button
A mutationobserver would be better
If you have to do the second option

