diff --git a/public/index-editorial.html b/public/index-editorial.html index 2291800..966be3f 100644 --- a/public/index-editorial.html +++ b/public/index-editorial.html @@ -2995,6 +2995,12 @@ function closeTerm() { termOpen = false; document.getElementById('termPanel').style.display = 'none'; } +// Auto-open terminal on page load with 75% opacity +window.addEventListener('load', function() { + setTimeout(function() { + if (!termOpen) { toggleTerm(); } + }, 900); +}); function termBoot() { termClear(); @@ -3148,7 +3154,9 @@ function termKeydown(e) {