Quicker Way to See Theme Edits

Hi,

Is there a quicker way to reload the Theme.css edits I’m making while working on an OSC template? The current way is I make changes, and then close OSC all the way down and reopen it to test the changes.Is there a quicker way than this I’m not familiar with or am I doing the only way possible?

Just curious. Thanks!

Cheers,
Dillon

Here is a hack that happens to work: open the browser js console (F12) and paste this:

socket = new WebSocket('ws://' + window.location.host + '/dev');
socket.onopen = function(){this.send('["reloadCss"]'); this.close()}
2 Likes