super-productivity/electron/overlay-indicator/overlay.html
2025-06-27 14:22:27 +02:00

26 lines
529 B
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Super Productivity Overlay</title>
<link
rel="stylesheet"
href="overlay.css"
/>
</head>
<body>
<div id="overlay-container">
<div id="content">
<div id="task-title">No active task</div>
<div id="time-display">--:--</div>
</div>
<button
id="show-main"
title="Show main window"
>
</button>
</div>
<script src="overlay.js"></script>
</body>
</html>