register path overrides with libc_bio, install fonts.xml

This commit is contained in:
Mis012
2025-04-11 22:14:22 +02:00
parent 8e40c13480
commit 272c554262
2595 changed files with 512 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,24 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<title>New incognito window</title>
</head>
<body>
<p><strong>You've gone incognito</strong>. Pages you view in this window
won't appear in your browser history or search history, and they won't
leave other traces, like cookies, on your device after you close the
incognito window. Any files you download or bookmarks you create will be
preserved, however.</p>
<p><strong>Going incognito doesn't affect the behavior of other people,
servers, or software. Be wary of:</strong></p>
<ul>
<li>Websites that collect or share information about you</li>
<li>Internet service providers or employers that track the pages you visit</li>
<li>Malicious software that tracks your keystrokes in exchange for free smileys</li>
<li>Surveillance by secret agents</li>
<li>People standing behind you</li>
</ul>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 456 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1009 B

View File

@@ -0,0 +1,71 @@
<html>
<head>
<style type="text/css">
body { background-color: black; }
a:hover { text-decoration: none; }
a:link { color: black; }
a:visited { color: black; }
#main {
position: absolute;
left: 0%;
top: 0%;
width: 100%;
height: 100%;
padding: 0%;
z-index: 10;
background-size: 100%;
background: no-repeat;
background-position: center;
}
#play {
position: absolute;
left: 50%;
top: 50%;
}
#logo {
position: absolute;
bottom: 0;
right: 0;
}
</style>
</head>
<body id="body">
<script type="text/javascript">
function setup() {
var width = document.body.clientWidth;
var height = document.body.clientHeight;
var mainElement = document.getElementById("main");
var playElement = document.getElementById("play");
var loadcount = 0;
var POSTER = "http://img.youtube.com/vi/VIDEO_ID/0.jpg";
function doload() {
if (++loadcount == 2) {
// Resize the element to the right size
mainElement.width = width;
mainElement.height = height;
mainElement.style.backgroundImage = "url('" + POSTER + "')";
// Center the play button
playElement.style.marginTop = "-" + play.height/2 + "px";
playElement.style.marginLeft = "-" + play.width/2 + "px";
playElement.addEventListener("click", function(e) {
top.location.href = "vnd.youtube:VIDEO_ID";
}, false);
}
}
var background = new Image();
background.onload = doload;
background.src = POSTER;
play = new Image();
play.onload = doload;
play.src = "play.png";
}
window.onload = setup;
</script>
<div id="main">
<img src="play.png" id="play"></img>
<img src="youtube.png" id="logo"></img>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB