Spaces:
Running
Running
Delete index.html
Browse files- index.html +0 -648
index.html
DELETED
|
@@ -1,648 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html lang="en">
|
| 3 |
-
<head>
|
| 4 |
-
<meta charset="UTF-8">
|
| 5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>XortronOS // CyberDesktop</title>
|
| 7 |
-
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
-
<style>
|
| 10 |
-
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700&display=swap');
|
| 11 |
-
|
| 12 |
-
:root {
|
| 13 |
-
--primary: #00f0ff;
|
| 14 |
-
--secondary: #ff00f0;
|
| 15 |
-
--dark: #0a0a12;
|
| 16 |
-
--darker: #050508;
|
| 17 |
-
--light: #e0e0ff;
|
| 18 |
-
}
|
| 19 |
-
|
| 20 |
-
body {
|
| 21 |
-
font-family: 'Share Tech Mono', monospace;
|
| 22 |
-
background-color: var(--darker);
|
| 23 |
-
color: var(--light);
|
| 24 |
-
overflow: hidden;
|
| 25 |
-
height: 100vh;
|
| 26 |
-
user-select: none;
|
| 27 |
-
}
|
| 28 |
-
|
| 29 |
-
.cyber-font {
|
| 30 |
-
font-family: 'Orbitron', sans-serif;
|
| 31 |
-
}
|
| 32 |
-
|
| 33 |
-
.window {
|
| 34 |
-
border: 1px solid var(--primary);
|
| 35 |
-
box-shadow: 0 0 15px var(--primary),
|
| 36 |
-
inset 0 0 10px var(--primary);
|
| 37 |
-
background: rgba(10, 10, 20, 0.9);
|
| 38 |
-
border-radius: 0;
|
| 39 |
-
transition: all 0.2s ease;
|
| 40 |
-
}
|
| 41 |
-
|
| 42 |
-
.window-header {
|
| 43 |
-
background: linear-gradient(90deg, #0a0a20, #1a1a3a);
|
| 44 |
-
border-bottom: 1px solid var(--primary);
|
| 45 |
-
padding: 5px 10px;
|
| 46 |
-
}
|
| 47 |
-
|
| 48 |
-
.terminal {
|
| 49 |
-
background-color: rgba(0, 0, 0, 0.85);
|
| 50 |
-
font-family: 'Share Tech Mono', monospace;
|
| 51 |
-
color: #00ff00;
|
| 52 |
-
text-shadow: 0 0 5px #00ff00;
|
| 53 |
-
}
|
| 54 |
-
|
| 55 |
-
.glow-text {
|
| 56 |
-
text-shadow: 0 0 5px var(--primary),
|
| 57 |
-
0 0 10px var(--primary);
|
| 58 |
-
}
|
| 59 |
-
|
| 60 |
-
.taskbar {
|
| 61 |
-
background: rgba(5, 5, 15, 0.9);
|
| 62 |
-
border-top: 1px solid var(--primary);
|
| 63 |
-
box-shadow: 0 0 20px var(--primary);
|
| 64 |
-
}
|
| 65 |
-
|
| 66 |
-
.icon {
|
| 67 |
-
text-align: center;
|
| 68 |
-
width: 80px;
|
| 69 |
-
padding: 10px 5px;
|
| 70 |
-
margin: 5px;
|
| 71 |
-
border-radius: 5px;
|
| 72 |
-
transition: all 0.2s ease;
|
| 73 |
-
}
|
| 74 |
-
|
| 75 |
-
.icon:hover {
|
| 76 |
-
background: rgba(0, 240, 255, 0.2);
|
| 77 |
-
}
|
| 78 |
-
|
| 79 |
-
.icon:active {
|
| 80 |
-
background: rgba(0, 240, 255, 0.4);
|
| 81 |
-
}
|
| 82 |
-
|
| 83 |
-
.file {
|
| 84 |
-
padding: 5px;
|
| 85 |
-
margin: 2px;
|
| 86 |
-
border-radius: 3px;
|
| 87 |
-
}
|
| 88 |
-
|
| 89 |
-
.file:hover {
|
| 90 |
-
background: rgba(0, 240, 255, 0.1);
|
| 91 |
-
}
|
| 92 |
-
|
| 93 |
-
.cursor-blink {
|
| 94 |
-
animation: blink 1s infinite;
|
| 95 |
-
}
|
| 96 |
-
|
| 97 |
-
@keyframes blink {
|
| 98 |
-
0%, 100% { opacity: 1; }
|
| 99 |
-
50% { opacity: 0; }
|
| 100 |
-
}
|
| 101 |
-
|
| 102 |
-
.pulse {
|
| 103 |
-
animation: pulse 2s infinite;
|
| 104 |
-
}
|
| 105 |
-
|
| 106 |
-
@keyframes pulse {
|
| 107 |
-
0% { opacity: 0.5; }
|
| 108 |
-
50% { opacity: 1; }
|
| 109 |
-
100% { opacity: 0.5; }
|
| 110 |
-
}
|
| 111 |
-
|
| 112 |
-
::-webkit-scrollbar {
|
| 113 |
-
width: 8px;
|
| 114 |
-
height: 8px;
|
| 115 |
-
}
|
| 116 |
-
|
| 117 |
-
::-webkit-scrollbar-track {
|
| 118 |
-
background: rgba(0, 0, 0, 0.2);
|
| 119 |
-
}
|
| 120 |
-
|
| 121 |
-
::-webkit-scrollbar-thumb {
|
| 122 |
-
background: var(--primary);
|
| 123 |
-
}
|
| 124 |
-
|
| 125 |
-
.matrix-bg {
|
| 126 |
-
position: fixed;
|
| 127 |
-
top: 0;
|
| 128 |
-
left: 0;
|
| 129 |
-
width: 100%;
|
| 130 |
-
height: 100%;
|
| 131 |
-
z-index: -1;
|
| 132 |
-
opacity: 0.5;
|
| 133 |
-
}
|
| 134 |
-
|
| 135 |
-
.browser-nav {
|
| 136 |
-
background: rgba(15, 15, 25, 0.9);
|
| 137 |
-
border-bottom: 1px solid var(--primary);
|
| 138 |
-
padding: 5px;
|
| 139 |
-
}
|
| 140 |
-
|
| 141 |
-
.url-bar {
|
| 142 |
-
background: rgba(0, 0, 0, 0.5);
|
| 143 |
-
border: 1px solid var(--primary);
|
| 144 |
-
color: var(--light);
|
| 145 |
-
padding: 3px 10px;
|
| 146 |
-
width: 100%;
|
| 147 |
-
border-radius: 3px;
|
| 148 |
-
}
|
| 149 |
-
|
| 150 |
-
button {
|
| 151 |
-
border: 1px solid var(--primary);
|
| 152 |
-
padding: 2px 8px;
|
| 153 |
-
margin: 2px;
|
| 154 |
-
border-radius: 3px;
|
| 155 |
-
background-color: rgba(0, 240, 255, 0.1);
|
| 156 |
-
transition: all 0.2s;
|
| 157 |
-
}
|
| 158 |
-
|
| 159 |
-
button:hover {
|
| 160 |
-
background-color: rgba(0, 240, 255, 0.3);
|
| 161 |
-
}
|
| 162 |
-
|
| 163 |
-
button:active {
|
| 164 |
-
background-color: rgba(0, 240, 255, 0.5);
|
| 165 |
-
}
|
| 166 |
-
|
| 167 |
-
.window-header button {
|
| 168 |
-
border: none;
|
| 169 |
-
background-color: transparent;
|
| 170 |
-
}
|
| 171 |
-
|
| 172 |
-
.window-header button:hover {
|
| 173 |
-
background-color: rgba(255,255,255,0.1);
|
| 174 |
-
}
|
| 175 |
-
|
| 176 |
-
/* Start Menu Styles */
|
| 177 |
-
.start-menu {
|
| 178 |
-
position: absolute;
|
| 179 |
-
bottom: 40px;
|
| 180 |
-
left: 0;
|
| 181 |
-
width: 300px;
|
| 182 |
-
height: 500px;
|
| 183 |
-
background: rgba(10, 10, 20, 0.95);
|
| 184 |
-
border: 1px solid var(--primary);
|
| 185 |
-
box-shadow: 0 0 20px var(--primary);
|
| 186 |
-
display: none;
|
| 187 |
-
z-index: 100;
|
| 188 |
-
}
|
| 189 |
-
|
| 190 |
-
.start-menu-header {
|
| 191 |
-
background: linear-gradient(90deg, #0a0a20, #1a1a3a);
|
| 192 |
-
padding: 10px;
|
| 193 |
-
border-bottom: 1px solid var(--primary);
|
| 194 |
-
}
|
| 195 |
-
|
| 196 |
-
.start-menu-search {
|
| 197 |
-
padding: 10px;
|
| 198 |
-
border-bottom: 1px solid var(--primary);
|
| 199 |
-
}
|
| 200 |
-
|
| 201 |
-
.start-menu-apps {
|
| 202 |
-
padding: 10px;
|
| 203 |
-
overflow-y: auto;
|
| 204 |
-
height: calc(100% - 110px);
|
| 205 |
-
}
|
| 206 |
-
|
| 207 |
-
.app-item {
|
| 208 |
-
display: flex;
|
| 209 |
-
align-items: center;
|
| 210 |
-
padding: 8px;
|
| 211 |
-
cursor: pointer;
|
| 212 |
-
border-radius: 3px;
|
| 213 |
-
}
|
| 214 |
-
|
| 215 |
-
.app-item:hover {
|
| 216 |
-
background: rgba(0, 240, 255, 0.2);
|
| 217 |
-
}
|
| 218 |
-
|
| 219 |
-
.app-item i {
|
| 220 |
-
margin-right: 10px;
|
| 221 |
-
width: 20px;
|
| 222 |
-
text-align: center;
|
| 223 |
-
}
|
| 224 |
-
|
| 225 |
-
.start-menu-footer {
|
| 226 |
-
position: absolute;
|
| 227 |
-
bottom: 0;
|
| 228 |
-
left: 0;
|
| 229 |
-
right: 0;
|
| 230 |
-
padding: 10px;
|
| 231 |
-
background: rgba(5, 5, 15, 0.9);
|
| 232 |
-
border-top: 1px solid var(--primary);
|
| 233 |
-
}
|
| 234 |
-
|
| 235 |
-
/* Calculator Styles */
|
| 236 |
-
.calculator-display {
|
| 237 |
-
background: rgba(0, 0, 0, 0.7);
|
| 238 |
-
border: 1px solid var(--primary);
|
| 239 |
-
padding: 10px;
|
| 240 |
-
margin-bottom: 10px;
|
| 241 |
-
text-align: right;
|
| 242 |
-
font-size: 24px;
|
| 243 |
-
height: 60px;
|
| 244 |
-
overflow: hidden;
|
| 245 |
-
}
|
| 246 |
-
|
| 247 |
-
.calculator-btn {
|
| 248 |
-
width: 50px;
|
| 249 |
-
height: 50px;
|
| 250 |
-
margin: 5px;
|
| 251 |
-
font-size: 18px;
|
| 252 |
-
}
|
| 253 |
-
|
| 254 |
-
.calculator-btn-operator {
|
| 255 |
-
background: rgba(0, 240, 255, 0.3);
|
| 256 |
-
}
|
| 257 |
-
|
| 258 |
-
.calculator-btn-equals {
|
| 259 |
-
background: rgba(0, 240, 255, 0.5);
|
| 260 |
-
}
|
| 261 |
-
|
| 262 |
-
/* Game Styles */
|
| 263 |
-
.game-container {
|
| 264 |
-
display: flex;
|
| 265 |
-
flex-direction: column;
|
| 266 |
-
align-items: center;
|
| 267 |
-
justify-content: center;
|
| 268 |
-
height: 100%;
|
| 269 |
-
}
|
| 270 |
-
|
| 271 |
-
.game-board {
|
| 272 |
-
display: grid;
|
| 273 |
-
grid-template-columns: repeat(3, 1fr);
|
| 274 |
-
gap: 5px;
|
| 275 |
-
margin: 20px 0;
|
| 276 |
-
}
|
| 277 |
-
|
| 278 |
-
.game-cell {
|
| 279 |
-
width: 80px;
|
| 280 |
-
height: 80px;
|
| 281 |
-
display: flex;
|
| 282 |
-
align-items: center;
|
| 283 |
-
justify-content: center;
|
| 284 |
-
font-size: 36px;
|
| 285 |
-
background: rgba(0, 0, 0, 0.5);
|
| 286 |
-
border: 1px solid var(--primary);
|
| 287 |
-
cursor: pointer;
|
| 288 |
-
}
|
| 289 |
-
|
| 290 |
-
.game-cell:hover {
|
| 291 |
-
background: rgba(0, 240, 255, 0.1);
|
| 292 |
-
}
|
| 293 |
-
|
| 294 |
-
.game-status {
|
| 295 |
-
margin: 10px 0;
|
| 296 |
-
font-size: 18px;
|
| 297 |
-
text-align: center;
|
| 298 |
-
}
|
| 299 |
-
|
| 300 |
-
/* Snake Game Styles */
|
| 301 |
-
#snake-game {
|
| 302 |
-
border: 1px solid var(--primary);
|
| 303 |
-
margin: 20px auto;
|
| 304 |
-
}
|
| 305 |
-
|
| 306 |
-
/* Minesweeper Styles */
|
| 307 |
-
.minesweeper-board {
|
| 308 |
-
display: grid;
|
| 309 |
-
grid-template-columns: repeat(10, 1fr);
|
| 310 |
-
gap: 2px;
|
| 311 |
-
margin: 20px auto;
|
| 312 |
-
}
|
| 313 |
-
|
| 314 |
-
.minesweeper-cell {
|
| 315 |
-
width: 25px;
|
| 316 |
-
height: 25px;
|
| 317 |
-
display: flex;
|
| 318 |
-
align-items: center;
|
| 319 |
-
justify-content: center;
|
| 320 |
-
font-size: 12px;
|
| 321 |
-
background: rgba(0, 0, 0, 0.5);
|
| 322 |
-
border: 1px solid var(--primary);
|
| 323 |
-
cursor: pointer;
|
| 324 |
-
}
|
| 325 |
-
|
| 326 |
-
.minesweeper-cell.revealed {
|
| 327 |
-
background: rgba(0, 240, 255, 0.1);
|
| 328 |
-
}
|
| 329 |
-
|
| 330 |
-
.minesweeper-cell.mine {
|
| 331 |
-
background: rgba(255, 0, 0, 0.5);
|
| 332 |
-
}
|
| 333 |
-
|
| 334 |
-
/* System Monitor Styles */
|
| 335 |
-
.system-monitor-graph {
|
| 336 |
-
height: 100px;
|
| 337 |
-
background: rgba(0, 0, 0, 0.5);
|
| 338 |
-
border: 1px solid var(--primary);
|
| 339 |
-
margin: 10px 0;
|
| 340 |
-
position: relative;
|
| 341 |
-
overflow: hidden;
|
| 342 |
-
}
|
| 343 |
-
|
| 344 |
-
.graph-line {
|
| 345 |
-
position: absolute;
|
| 346 |
-
bottom: 0;
|
| 347 |
-
left: 0;
|
| 348 |
-
width: 100%;
|
| 349 |
-
height: 100%;
|
| 350 |
-
}
|
| 351 |
-
|
| 352 |
-
.cpu-graph {
|
| 353 |
-
background: rgba(0, 240, 255, 0.2);
|
| 354 |
-
}
|
| 355 |
-
|
| 356 |
-
.ram-graph {
|
| 357 |
-
background: rgba(255, 0, 240, 0.2);
|
| 358 |
-
}
|
| 359 |
-
|
| 360 |
-
/* Text Editor Styles */
|
| 361 |
-
.text-editor-area {
|
| 362 |
-
width: 100%;
|
| 363 |
-
height: calc(100% - 40px);
|
| 364 |
-
background: rgba(0, 0, 0, 0.7);
|
| 365 |
-
border: 1px solid var(--primary);
|
| 366 |
-
color: var(--light);
|
| 367 |
-
padding: 10px;
|
| 368 |
-
font-family: 'Share Tech Mono', monospace;
|
| 369 |
-
resize: none;
|
| 370 |
-
outline: none;
|
| 371 |
-
}
|
| 372 |
-
|
| 373 |
-
/* Settings Panel Styles */
|
| 374 |
-
.settings-option {
|
| 375 |
-
padding: 10px;
|
| 376 |
-
border-bottom: 1px solid rgba(0, 240, 255, 0.2);
|
| 377 |
-
}
|
| 378 |
-
|
| 379 |
-
.settings-option-title {
|
| 380 |
-
margin-bottom: 5px;
|
| 381 |
-
font-weight: bold;
|
| 382 |
-
}
|
| 383 |
-
|
| 384 |
-
.settings-toggle {
|
| 385 |
-
position: relative;
|
| 386 |
-
display: inline-block;
|
| 387 |
-
width: 50px;
|
| 388 |
-
height: 24px;
|
| 389 |
-
}
|
| 390 |
-
|
| 391 |
-
.settings-toggle input {
|
| 392 |
-
opacity: 0;
|
| 393 |
-
width: 0;
|
| 394 |
-
height: 0;
|
| 395 |
-
}
|
| 396 |
-
|
| 397 |
-
.settings-slider {
|
| 398 |
-
position: absolute;
|
| 399 |
-
cursor: pointer;
|
| 400 |
-
top: 0;
|
| 401 |
-
left: 0;
|
| 402 |
-
right: 0;
|
| 403 |
-
bottom: 0;
|
| 404 |
-
background-color: rgba(0, 0, 0, 0.5);
|
| 405 |
-
border: 1px solid var(--primary);
|
| 406 |
-
transition: .4s;
|
| 407 |
-
}
|
| 408 |
-
|
| 409 |
-
.settings-slider:before {
|
| 410 |
-
position: absolute;
|
| 411 |
-
content: "";
|
| 412 |
-
height: 16px;
|
| 413 |
-
width: 16px;
|
| 414 |
-
left: 4px;
|
| 415 |
-
bottom: 3px;
|
| 416 |
-
background-color: var(--primary);
|
| 417 |
-
transition: .4s;
|
| 418 |
-
}
|
| 419 |
-
|
| 420 |
-
input:checked + .settings-slider {
|
| 421 |
-
background-color: rgba(0, 240, 255, 0.3);
|
| 422 |
-
}
|
| 423 |
-
|
| 424 |
-
input:checked + .settings-slider:before {
|
| 425 |
-
transform: translateX(26px);
|
| 426 |
-
}
|
| 427 |
-
</style>
|
| 428 |
-
</head>
|
| 429 |
-
<body>
|
| 430 |
-
<canvas id="matrix" class="matrix-bg"></canvas>
|
| 431 |
-
|
| 432 |
-
<!-- Desktop Icons -->
|
| 433 |
-
<div class="absolute left-0 top-0 p-4 flex flex-col">
|
| 434 |
-
<div class="icon" onclick="openApp('terminal')">
|
| 435 |
-
<div class="text-3xl text-center mb-1"><i class="fas fa-terminal text-green-500"></i></div>
|
| 436 |
-
<div class="text-xs text-center">Terminal</div>
|
| 437 |
-
</div>
|
| 438 |
-
<div class="icon" onclick="openApp('file-explorer')">
|
| 439 |
-
<div class="text-3xl text-center mb-1"><i class="fas fa-folder text-yellow-500"></i></div>
|
| 440 |
-
<div class="text-xs text-center">Files</div>
|
| 441 |
-
</div>
|
| 442 |
-
<div class="icon" onclick="openApp('hack-tools')">
|
| 443 |
-
<div class="text-3xl text-center mb-1"><i class="fas fa-user-secret text-red-500"></i></div>
|
| 444 |
-
<div class="text-xs text-center">Hack Tools</div>
|
| 445 |
-
</div>
|
| 446 |
-
<div class="icon" onclick="openApp('browser')">
|
| 447 |
-
<div class="text-3xl text-center mb-1"><i class="fas fa-globe text-purple-500"></i></div>
|
| 448 |
-
<div class="text-xs text-center">DarkBrowser</div>
|
| 449 |
-
</div>
|
| 450 |
-
<div class="icon" onclick="openApp('calculator')">
|
| 451 |
-
<div class="text-3xl text-center mb-1"><i class="fas fa-calculator text-blue-500"></i></div>
|
| 452 |
-
<div class="text-xs text-center">Calculator</div>
|
| 453 |
-
</div>
|
| 454 |
-
<div class="icon" onclick="openApp('text-editor')">
|
| 455 |
-
<div class="text-3xl text-center mb-1"><i class="fas fa-file-code text-green-400"></i></div>
|
| 456 |
-
<div class="text-xs text-center">Text Editor</div>
|
| 457 |
-
</div>
|
| 458 |
-
<div class="icon" onclick="window.open('https://ko-fi.com/xortron', '_blank')" title="Support the developer!">
|
| 459 |
-
<div class="text-3xl text-center mb-1"><i class="fas fa-coffee text-yellow-600"></i></div>
|
| 460 |
-
<div class="text-xs text-center">Buy me a Coffee</div>
|
| 461 |
-
</div>
|
| 462 |
-
</div>
|
| 463 |
-
|
| 464 |
-
<!-- Start Menu -->
|
| 465 |
-
<div id="start-menu" class="start-menu">
|
| 466 |
-
<div class="start-menu-header cyber-font">
|
| 467 |
-
XortronOS v7.7.7
|
| 468 |
-
</div>
|
| 469 |
-
<div class="start-menu-search">
|
| 470 |
-
<input type="text" class="url-bar w-full" placeholder="Search applications...">
|
| 471 |
-
</div>
|
| 472 |
-
<div class="start-menu-apps">
|
| 473 |
-
<div class="app-item" onclick="openApp('terminal')">
|
| 474 |
-
<i class="fas fa-terminal text-green-500"></i>
|
| 475 |
-
<span>Terminal</span>
|
| 476 |
-
</div>
|
| 477 |
-
<div class="app-item" onclick="openApp('file-explorer')">
|
| 478 |
-
<i class="fas fa-folder text-yellow-500"></i>
|
| 479 |
-
<span>File Explorer</span>
|
| 480 |
-
</div>
|
| 481 |
-
<div class="app-item" onclick="openApp('browser')">
|
| 482 |
-
<i class="fas fa-globe text-purple-500"></i>
|
| 483 |
-
<span>DarkBrowser</span>
|
| 484 |
-
</div>
|
| 485 |
-
<div class="app-item" onclick="openApp('calculator')">
|
| 486 |
-
<i class="fas fa-calculator text-blue-500"></i>
|
| 487 |
-
<span>Calculator</span>
|
| 488 |
-
</div>
|
| 489 |
-
<div class="app-item" onclick="openApp('text-editor')">
|
| 490 |
-
<i class="fas fa-file-code text-green-400"></i>
|
| 491 |
-
<span>Text Editor</span>
|
| 492 |
-
</div>
|
| 493 |
-
<div class="app-item" onclick="openApp('system-monitor')">
|
| 494 |
-
<i class="fas fa-chart-line text-red-400"></i>
|
| 495 |
-
<span>System Monitor</span>
|
| 496 |
-
</div>
|
| 497 |
-
<div class="app-item" onclick="openApp('settings')">
|
| 498 |
-
<i class="fas fa-cog text-gray-400"></i>
|
| 499 |
-
<span>System Settings</span>
|
| 500 |
-
</div>
|
| 501 |
-
<div class="app-item" onclick="openApp('tic-tac-toe')">
|
| 502 |
-
<i class="fas fa-times text-pink-400"></i>
|
| 503 |
-
<span>Tic Tac Toe</span>
|
| 504 |
-
</div>
|
| 505 |
-
<div class="app-item" onclick="openApp('snake-game')">
|
| 506 |
-
<i class="fas fa-gamepad text-orange-400"></i>
|
| 507 |
-
<span>Snake Game</span>
|
| 508 |
-
</div>
|
| 509 |
-
<div class="app-item" onclick="openApp('minesweeper')">
|
| 510 |
-
<i class="fas fa-bomb text-yellow-400"></i>
|
| 511 |
-
<span>Minesweeper</span>
|
| 512 |
-
</div>
|
| 513 |
-
<div class="app-item" onclick="openApp('hack-tools')">
|
| 514 |
-
<i class="fas fa-user-secret text-red-500"></i>
|
| 515 |
-
<span>Hack Tools</span>
|
| 516 |
-
</div>
|
| 517 |
-
<div class="app-item" onclick="window.open('https://ko-fi.com/xortron', '_blank')">
|
| 518 |
-
<i class="fas fa-coffee text-yellow-600"></i>
|
| 519 |
-
<span>Support Developer</span>
|
| 520 |
-
</div>
|
| 521 |
-
</div>
|
| 522 |
-
<div class="start-menu-footer">
|
| 523 |
-
<div class="flex justify-between items-center">
|
| 524 |
-
<div>
|
| 525 |
-
<i class="fas fa-user-shield text-blue-400 mr-2"></i>
|
| 526 |
-
<span class="text-xs">User: root</span>
|
| 527 |
-
</div>
|
| 528 |
-
<button class="text-xs" onclick="shutdown()">
|
| 529 |
-
<i class="fas fa-power-off text-red-400 mr-1"></i> Shutdown
|
| 530 |
-
</button>
|
| 531 |
-
</div>
|
| 532 |
-
</div>
|
| 533 |
-
</div>
|
| 534 |
-
|
| 535 |
-
<!-- Windows Container -->
|
| 536 |
-
<div id="windows-container">
|
| 537 |
-
<!-- Terminal Window -->
|
| 538 |
-
<div id="terminal-window" class="window absolute top-16 left-16 w-2/3 h-2/3 hidden" style="z-index: 10;">
|
| 539 |
-
<div class="window-header flex justify-between items-center cursor-move">
|
| 540 |
-
<div class="flex items-center">
|
| 541 |
-
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
|
| 542 |
-
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
|
| 543 |
-
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
|
| 544 |
-
<span class="cyber-font ml-2">Xortron-Terminal</span>
|
| 545 |
-
</div>
|
| 546 |
-
<div class="text-xs">root@xortron-os:~</div>
|
| 547 |
-
<div class="flex">
|
| 548 |
-
<button class="px-2" onclick="minimizeWindow('terminal')" title="Minimize">_</button>
|
| 549 |
-
<button class="px-2" onclick="maximizeWindow('terminal')" title="Maximize">□</button>
|
| 550 |
-
<button class="px-2" onclick="closeWindow('terminal')" title="Close">×</button>
|
| 551 |
-
</div>
|
| 552 |
-
</div>
|
| 553 |
-
<div class="terminal p-2 h-[calc(100%-35px)] overflow-auto" id="terminal-content">
|
| 554 |
-
<div>Xortron Operating System v7.7.7</div>
|
| 555 |
-
<div>Kernel 5.15.0-76-generic x86_64</div>
|
| 556 |
-
<br>
|
| 557 |
-
<div>Last login: <span id="login-time"></span> from 192.168.1.105</div>
|
| 558 |
-
<br>
|
| 559 |
-
<div class="flex items-center">
|
| 560 |
-
<span class="text-green-500">root@xortron-os:~#</span>
|
| 561 |
-
<input type="text" class="bg-transparent border-none outline-none flex-1 ml-2 text-green-500" id="terminal-input" autofocus>
|
| 562 |
-
<span class="cursor-blink">█</span>
|
| 563 |
-
</div>
|
| 564 |
-
</div>
|
| 565 |
-
</div>
|
| 566 |
-
|
| 567 |
-
<!-- File Explorer Window -->
|
| 568 |
-
<div id="file-explorer-window" class="window absolute top-32 left-32 w-1/2 h-1/2 hidden" style="z-index: 9;">
|
| 569 |
-
<div class="window-header flex justify-between items-center cursor-move">
|
| 570 |
-
<div class="flex items-center">
|
| 571 |
-
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
|
| 572 |
-
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
|
| 573 |
-
<div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
|
| 574 |
-
<span class="cyber-font ml-2">Xortron-Files</span>
|
| 575 |
-
</div>
|
| 576 |
-
<div class="text-xs">/root/files</div>
|
| 577 |
-
<div class="flex">
|
| 578 |
-
<button class="px-2" onclick="minimizeWindow('file-explorer')" title="Minimize">_</button>
|
| 579 |
-
<button class="px-2" onclick="maximizeWindow('file-explorer')" title="Maximize">□</button>
|
| 580 |
-
<button class="px-2" onclick="closeWindow('file-explorer')" title="Close">×</button>
|
| 581 |
-
</div>
|
| 582 |
-
</div>
|
| 583 |
-
<div class="p-2 h-[calc(100%-35px)] overflow-auto">
|
| 584 |
-
<div class="flex h-full">
|
| 585 |
-
<div class="w-1/4 border-r border-gray-700 pr-2">
|
| 586 |
-
<div class="text-xs text-gray-400 mb-2">LOCATIONS</div>
|
| 587 |
-
<div class="file flex items-center py-1 cursor-pointer">
|
| 588 |
-
<i class="fas fa-home mr-2 text-blue-400"></i>
|
| 589 |
-
<span>Home</span>
|
| 590 |
-
</div>
|
| 591 |
-
<div class="file flex items-center py-1 cursor-pointer">
|
| 592 |
-
<i class="fas fa-desktop mr-2 text-purple-400"></i>
|
| 593 |
-
<span>Desktop</span>
|
| 594 |
-
</div>
|
| 595 |
-
<div class="file flex items-center py-1 cursor-pointer">
|
| 596 |
-
<i class="fas fa-download mr-2 text-green-400"></i>
|
| 597 |
-
<span>Downloads</span>
|
| 598 |
-
</div>
|
| 599 |
-
<div class="file flex items-center py-1 cursor-pointer">
|
| 600 |
-
<i class="fas fa-database mr-2 text-yellow-400"></i>
|
| 601 |
-
<span>Data</span>
|
| 602 |
-
</div>
|
| 603 |
-
<div class="file flex items-center py-1 cursor-pointer">
|
| 604 |
-
<i class="fas fa-network-wired mr-2 text-red-400"></i>
|
| 605 |
-
<span>Network</span>
|
| 606 |
-
</div>
|
| 607 |
-
</div>
|
| 608 |
-
<div class="w-3/4 pl-2">
|
| 609 |
-
<div class="flex justify-between items-center mb-2">
|
| 610 |
-
<div class="text-xs text-gray-400">/root/files</div>
|
| 611 |
-
<div class="flex">
|
| 612 |
-
<button class="text-xs px-2 py-1 bg-gray-800 mr-1">New Folder</button>
|
| 613 |
-
<button class="text-xs px-2 py-1 bg-gray-800">Upload</button>
|
| 614 |
-
</div>
|
| 615 |
-
</div>
|
| 616 |
-
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-2">
|
| 617 |
-
<div class="file text-center cursor-pointer">
|
| 618 |
-
<div class="text-3xl mb-1"><i class="fas fa-folder text-yellow-500"></i></div>
|
| 619 |
-
<div class="text-xs truncate">Documents</div>
|
| 620 |
-
</div>
|
| 621 |
-
<div class="file text-center cursor-pointer">
|
| 622 |
-
<div class="text-3xl mb-1"><i class="fas fa-folder text-yellow-500"></i></div>
|
| 623 |
-
<div class="text-xs truncate">Hack Tools</div>
|
| 624 |
-
</div>
|
| 625 |
-
<div class="file text-center cursor-pointer">
|
| 626 |
-
<div class="text-3xl mb-1"><i class="fas fa-file-code text-blue-400"></i></div>
|
| 627 |
-
<div class="text-xs truncate">script.py</div>
|
| 628 |
-
</div>
|
| 629 |
-
<div class="file text-center cursor-pointer">
|
| 630 |
-
<div class="text-3xl mb-1"><i class="fas fa-file-alt text-gray-400"></i></div>
|
| 631 |
-
<div class="text-xs truncate">Weaponizer.txt</div>
|
| 632 |
-
</div>
|
| 633 |
-
<div class="file text-center cursor-pointer">
|
| 634 |
-
<div class="text-3xl mb-1"><i class="fas fa-file-archive text-purple-400"></i></div>
|
| 635 |
-
<div class="text-xs truncate">m3th4mph3t4m1n3.zip</div>
|
| 636 |
-
</div>
|
| 637 |
-
<div class="file text-center cursor-pointer">
|
| 638 |
-
<div class="text-3xl mb-1"><i class="fas fa-key text-green-400"></i></div>
|
| 639 |
-
<div class="text-xs truncate">keys.asc</div>
|
| 640 |
-
</div>
|
| 641 |
-
<div class="file text-center cursor-pointer">
|
| 642 |
-
<div class="text-3xl mb-1"><i class="fas fa-database text-red-400"></i></div>
|
| 643 |
-
<div class="text-xs truncate">passwords.db</div>
|
| 644 |
-
</div>
|
| 645 |
-
<div class="file text-center cursor-pointer">
|
| 646 |
-
<div class="text-3xl mb-1"><i class="fas fa-file-image text-pink-400"></i></div>
|
| 647 |
-
<div class="text-xs truncate">Porn
|
| 648 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|