From 990c989fa3f8a1fa70ec3667067565959a7d891d Mon Sep 17 00:00:00 2001 From: Rene Fichtmueller Date: Sun, 29 Mar 2026 16:19:15 +0200 Subject: [PATCH] feat: terminal auto-opens on load at 75% opacity, 50% on hover --- public/index-editorial.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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) {