Skip to content

Commit

Permalink
Update Win95OnLinux.html
Browse files Browse the repository at this point in the history
  • Loading branch information
InfinityJammyyy authored Feb 2, 2024
1 parent 4fd6701 commit a2ac267
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Win95OnLinux.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,29 @@
dir="ltr">
<h1 style="width: 1030px;">Windows 95 on Linux with Chicago95, Wine32, and
Solitaire 98.</h1>

<!-- The Clock that will probably break the entire website :( -->

<div id="clock"></div>

<script>
function updateClock() {
const now = new Date();
const hours = String(now.getHours()).padStart(2, '0');
const minutes = String(now.getMinutes()).padStart(2, '0');
const seconds = String(now.getSeconds()).padStart(2, '0');
const timeString = `${hours}:${minutes}:${seconds}`;
document.getElementById('clock').textContent = timeString;
}

// Update the clock every second
setInterval(updateClock, 1000);

// Initial call to display the clock immediately
updateClock();
</script>

<!-- End Clock -->
<p style="width: 1000px;">With Chicago95 you can install a windows95 like
theme on XUbuntu this does work with other Distros but I have found that
XUbuntu coming pre-packaged with the XFCE desktop environment is the works
Expand Down

0 comments on commit a2ac267

Please sign in to comment.