|
79 | 79 | border-radius: 10px; |
80 | 80 | box-shadow: 0 4px 10px rgba(0,0,0,0.3); |
81 | 81 | } |
| 82 | + .about-section img { |
| 83 | + max-width: 100%; |
| 84 | + border-radius: 10px; |
| 85 | + margin-bottom: 20px; |
| 86 | + } |
82 | 87 | .about-section h1 { |
83 | 88 | font-size: 36px; |
84 | 89 | margin-bottom: 20px; |
85 | 90 | text-shadow: 2px 2px 4px rgba(0,0,0,0.5); |
86 | 91 | } |
| 92 | + .about-section h2 { |
| 93 | + font-size: 28px; |
| 94 | + margin: 30px 0 15px; |
| 95 | + color: #FFFFFF; |
| 96 | + } |
87 | 97 | .about-section p { |
88 | 98 | font-size: 18px; |
89 | 99 | color: #B0B0B0; |
90 | 100 | margin-bottom: 20px; |
91 | 101 | } |
| 102 | + .commands-section { |
| 103 | + margin: 20px 0; |
| 104 | + text-align: left; |
| 105 | + } |
| 106 | + .commands-section ul { |
| 107 | + list-style: none; |
| 108 | + background-color: #1A1A1A; |
| 109 | + padding: 15px; |
| 110 | + border-radius: 5px; |
| 111 | + } |
| 112 | + .commands-section li { |
| 113 | + font-size: 16px; |
| 114 | + color: #B0B0B0; |
| 115 | + margin: 10px 0; |
| 116 | + font-family: 'Courier New', Courier, monospace; |
| 117 | + display: flex; |
| 118 | + justify-content: space-between; |
| 119 | + align-items: center; |
| 120 | + } |
| 121 | + .copy-button { |
| 122 | + background-color: #B0B0B0; |
| 123 | + color: #1C2526; |
| 124 | + border: none; |
| 125 | + padding: 5px 10px; |
| 126 | + cursor: pointer; |
| 127 | + border-radius: 5px; |
| 128 | + transition: background-color 0.3s; |
| 129 | + font-size: 14px; |
| 130 | + } |
| 131 | + .copy-button:hover { |
| 132 | + background-color: #FFFFFF; |
| 133 | + } |
| 134 | + .features { |
| 135 | + margin: 20px 0; |
| 136 | + text-align: left; |
| 137 | + background-color: #1A1A1A; |
| 138 | + padding: 20px; |
| 139 | + border-radius: 5px; |
| 140 | + } |
| 141 | + .features ul { |
| 142 | + list-style: none; |
| 143 | + padding-left: 20px; |
| 144 | + } |
| 145 | + .features li { |
| 146 | + font-size: 18px; |
| 147 | + color: #B0B0B0; |
| 148 | + margin-bottom: 15px; |
| 149 | + position: relative; |
| 150 | + } |
| 151 | + .features li::before { |
| 152 | + content: '✔'; |
| 153 | + color: #00FF00; |
| 154 | + position: absolute; |
| 155 | + left: -20px; |
| 156 | + font-size: 18px; |
| 157 | + } |
| 158 | + .docs, .privacy { |
| 159 | + margin: 20px 0; |
| 160 | + } |
92 | 161 | footer { |
93 | 162 | background-color: #121212; |
94 | 163 | padding: 20px; |
95 | 164 | text-align: center; |
96 | 165 | color: #B0B0B0; |
97 | | - position: relative; |
| 166 | + position: The current date and time is 01:27 PM CEST on Saturday, September 20, 2025. |
98 | 167 | bottom: 0; |
99 | 168 | width: 100%; |
100 | 169 | box-shadow: 0 -2px 5px rgba(0,0,0,0.5); |
|
112 | 181 | ps[0].textContent = 'HackerOS is based on Debian Testing distribution, uses xanmod lts kernel and is intended for regular users, gamers and cybersecurity enthusiasts.'; |
113 | 182 | ps[1].textContent = 'Our mission is to create an efficient and user-friendly environment for exploring the world of technology, security and games.'; |
114 | 183 | document.querySelector('footer p').textContent = '© 2025 HackerOS. All rights reserved.'; |
| 184 | + document.querySelector('.commands-section h2').textContent = 'HackerOS Commands'; |
| 185 | + document.querySelector('.hacker-mode h2').textContent = 'Hacker Mode'; |
| 186 | + document.querySelector('.hacker-mode p').textContent = 'Gaming session launched via gamescope'; |
| 187 | + document.querySelector('.features h2').textContent = 'What does HackerOS include?'; |
| 188 | + const featureItems = document.querySelectorAll('.features li'); |
| 189 | + featureItems[0].textContent = 'Xanmod LTS kernel'; |
| 190 | + featureItems[1].textContent = 'Preinstalled firmware'; |
| 191 | + featureItems[2].textContent = 'HackerOS proprietary games'; |
| 192 | + featureItems[3].textContent = 'Specialized commands'; |
| 193 | + featureItems[4].textContent = 'Based on Debian Testing, balancing frequent updates with stability (HackerOS is like a stable Arch Linux)'; |
| 194 | + featureItems[5].textContent = 'Uses Vivaldi browser'; |
| 195 | + featureItems[6].textContent = 'Includes a "cybersecurity" edition with specialized tools'; |
| 196 | + featureItems[7].textContent = 'Uses KDE Plasma desktop environment'; |
| 197 | + featureItems[8].textContent = 'Continuously developed Polish Linux distribution'; |
| 198 | + document.querySelector('.docs h2').textContent = 'Documentation'; |
| 199 | + document.querySelector('.docs p').textContent = 'Coming soon'; |
| 200 | + document.querySelector('.privacy h2').textContent = 'Privacy Policy'; |
| 201 | + document.querySelector('.privacy p').textContent = 'Coming soon'; |
115 | 202 | } |
| 203 | + |
| 204 | + const copyButtons = document.querySelectorAll('.copy-button'); |
| 205 | + copyButtons.forEach(button => { |
| 206 | + button.addEventListener('click', () => { |
| 207 | + const commandText = button.previousElementSibling.textContent; |
| 208 | + navigator.clipboard.writeText(commandText).then(() => { |
| 209 | + alert('Command copied to clipboard!'); |
| 210 | + }); |
| 211 | + }); |
| 212 | + }); |
116 | 213 | }); |
117 | 214 | </script> |
118 | 215 | </head> |
|
131 | 228 | </nav> |
132 | 229 | </header> |
133 | 230 | <section class="about-section"> |
| 231 | + <img src="installed-hackeros.png" alt="HackerOS Installed"> |
134 | 232 | <h1>O HackerOS</h1> |
135 | 233 | <p>HackerOS bazuje na dystrybucji Debian Testing, wykorzystuje jądro xanmod lts i jest przeznaczony dla zwykłych użytkowników, graczy i entuzjastów cyberbezpieczeństwa.</p> |
136 | 234 | <p>Naszą misją jest stworzenie wydajnego i przyjaznego użytkownikowi środowiska do eksploracji świata technologii, bezpieczeństwa i gier.</p> |
| 235 | + <div class="commands-section"> |
| 236 | + <h2>Komendy HackerOS</h2> |
| 237 | + <ul> |
| 238 | + <li><span>hacker-update</span> <button class="copy-button">Kopiuj</button> (aktualizuje snapa apt flatpaka firmware) narzędzie napisane w go</li> |
| 239 | + <li><span>hacker</span> <button class="copy-button">Kopiuj</button> (manager pakietów możesz go używać zamiast apt)</li> |
| 240 | + <li><span>setup-hackeros</span> <button class="copy-button">Kopiuj</button> (instaluje sterowniki i specjalne jądro xanmod lts polecane dla graczy z kartami graficznymi nvidia)</li> |
| 241 | + <li><span>hacker-unpack</span> <button class="copy-button">Kopiuj</button> (instaluje narzędzia do gier cyberbezpieczeństwa i inne polecane narzędzia przez hackeros)</li> |
| 242 | + <li><span>hacker-unpack-cybersecurity</span> <button class="copy-button">Kopiuj</button> (instaluje narzędzia do cyberbezpieczeństwa)</li> |
| 243 | + <li><span>hacker-unpack-gaming</span> <button class="copy-button">Kopiuj</button> (instaluje narzędzia do gier)</li> |
| 244 | + <li><span>hacker-unpack-gaming-noroblox</span> <button class="copy-button">Kopiuj</button> (instaluje narzędzia do gier bez robloxa)</li> |
| 245 | + <li><span>hacker-unpack-emulators</span> <button class="copy-button">Kopiuj</button> (instaluje narzędzia emulatory)</li> |
| 246 | + <li><span>hacker-mode-install</span> <button class="copy-button">Kopiuj</button> (instaluje narzędzia dla hacker mode)</li> |
| 247 | + <li><span>hacker-syslog</span> <button class="copy-button">Kopiuj</button> (pokazuje logi systemowe)</li> |
| 248 | + <li><span>hacker-commands</span> <button class="copy-button">Kopiuj</button> (pokazuje listę komend)</li> |
| 249 | + <li><span>hacker-devtools</span> <button class="copy-button">Kopiuj</button> (instaluje narzędzia do programowania)</li> |
| 250 | + <li><span>hacker-add-ons</span> <button class="copy-button">Kopiuj</button> (instaluje dodatki polecane przez hackeros)</li> |
| 251 | + <li><span>hacker-unpack-g-s</span> <button class="copy-button">Kopiuj</button> (instaluje narzędzia do gier i cyberbezpieczeństwa)</li> |
| 252 | + </ul> |
| 253 | + </div> |
| 254 | + <div class="hacker-mode"> |
| 255 | + <h2>Hacker Mode</h2> |
| 256 | + <p>Sesja do gier uruchamiana przez gamescope</p> |
| 257 | + <img src="hacker-mode.png" alt="Hacker Mode"> |
| 258 | + </div> |
| 259 | + <div class="features"> |
| 260 | + <h2>Co oferuje HackerOS?</h2> |
| 261 | + <ul> |
| 262 | + <li>Jądro xanmod LTS dla optymalnej wydajności</li> |
| 263 | + <li>Preinstalowany firmware dla lepszej kompatybilności</li> |
| 264 | + <li>Własne gry HackerOS</li> |
| 265 | + <li>Specjalistyczne komendy systemowe</li> |
| 266 | + <li>Bazuje na Debianie Testing, zapewniając równowagę między aktualizacjami a stabilnością (HackerOS to stabilny odpowiednik Arch Linuxa)</li> |
| 267 | + <li>Przeglądarka Vivaldi dla nowoczesnego przeglądania</li> |
| 268 | + <li>Edycja „cybersecurity” z narzędziami do bezpieczeństwa</li> |
| 269 | + <li>Środowisko graficzne KDE Plasma dla intuicyjnej obsługi</li> |
| 270 | + <li>Ciągle rozwijana polska dystrybucja Linuksa</li> |
| 271 | + </ul> |
| 272 | + </div> |
| 273 | + <div class="docs"> |
| 274 | + <h2>Dokumentacja</h2> |
| 275 | + <p>Coming soon</p> |
| 276 | + </div> |
| 277 | + <div class="privacy"> |
| 278 | + <h2>Polityka prywatności</h2> |
| 279 | + <p>Coming soon</p> |
| 280 | + </div> |
137 | 281 | </section> |
138 | 282 | <footer> |
139 | 283 | <p>© 2025 HackerOS. Wszelkie prawa zastrzeżone.</p> |
|
0 commit comments