From 3a763e044b9f4e6f4b6e417bfcada1ffa3810fb9 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Mon, 12 Feb 2024 10:00:37 +0100 Subject: remove start page (unused) --- .config/startpage/index.html | 13 ------------- .config/startpage/script.js | 10 ---------- .config/startpage/style.css | 25 ------------------------- 3 files changed, 48 deletions(-) delete mode 100644 .config/startpage/index.html delete mode 100644 .config/startpage/script.js delete mode 100644 .config/startpage/style.css diff --git a/.config/startpage/index.html b/.config/startpage/index.html deleted file mode 100644 index 205ece8..0000000 --- a/.config/startpage/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - New Tab - - - - - -

- - diff --git a/.config/startpage/script.js b/.config/startpage/script.js deleted file mode 100644 index b45a34a..0000000 --- a/.config/startpage/script.js +++ /dev/null @@ -1,10 +0,0 @@ -function time() { - var now = new Date(); - var hour = now.getHours().toString().padStart(2, "0") - var minute = now.getMinutes().toString().padStart(2, "0") - document.getElementById("time").innerText = `${hour}:${minute}` -} - -time(); -setInterval(time, 500); - diff --git a/.config/startpage/style.css b/.config/startpage/style.css deleted file mode 100644 index d92ab0c..0000000 --- a/.config/startpage/style.css +++ /dev/null @@ -1,25 +0,0 @@ -html, body { - margin: 0; - padding: 0; - background: var(--background); - color: var(--foreground); - font-family: "JetBrainsMono Nerd Font"; -} - -* { - cursor: normal; - user-select: none; -} - -h1 { - margin: 0; -} - -.center { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - white-space: nowrap; -} - -- cgit v1.2.3