diff --git a/clanky/eos-history.html b/clanky/eos-history.html index 509e0ca..f84e4f8 100644 --- a/clanky/eos-history.html +++ b/clanky/eos-history.html @@ -44,6 +44,7 @@
  • Telegram
  • O nás
  • +
  • Rozcestník
  • diff --git a/clanky/index.html b/clanky/index.html index c718c78..f55b82d 100644 --- a/clanky/index.html +++ b/clanky/index.html @@ -47,6 +47,7 @@
  • Telegram
  • O nás
  • +
  • Rozcestník
  • diff --git a/clanky/style.css b/clanky/style.css index c873657..b36ac0d 100644 --- a/clanky/style.css +++ b/clanky/style.css @@ -95,7 +95,7 @@ p { header nav { position: absolute; top: 70px; - background-color: var(--special-blue); + background-color: #313131; width: 100%; display: none; } diff --git a/index.html b/index.html index 04aec8c..78c8e70 100644 --- a/index.html +++ b/index.html @@ -47,6 +47,7 @@
  • Telegram
  • O nás
  • +
  • Rozcestník
  • @@ -59,7 +60,7 @@
    -

    🇨🇿 Vítáme Tě na EndeavourOS Česká komunita! 🇨🇿

    +

    🇨🇿 Vítám Tě na webu České komunity EndeavourOS! 🇨🇿

    EndeavourOS je distribuce založená na Arch Linuxu, ( Českou komunitu Arch Linux najdeš na @@ -71,16 +72,16 @@ Brzy i v češtině

    - Jsme Linuxový nadšenci Arch Linuxu a EndeavourOS, za tímto účel vznikl + Jsem Linuxový nadšenec Arch Linuxu a EndeavourOS, za tímto účel vznikl tento projekt s dovolením vývojářů EndeavourOS. Pravidelně Vám jsem - budeme přinášet novinky ze světa EndeavourOS, v sekci Wiki najdete + budu přinášet novinky ze světa EndeavourOS, v sekci Wiki najdete spousty tipů a návodů pro EndeavourOS. Na sociálních sítích Discord a - Telegram najdete disk uzní fóra v češtině. Aktivně jsme v kontaktu s + Telegram najdete diskuzní fóra v češtině. Aktivně jsem v kontaktu s vývojáři EndeavourOS a pracujeme na překladu aplikace Welcome do českého jazyka.

    - Web je stále ve vývoji tak se omlouváme za chybějící obsah a jiné + Web je stále ve vývoji tak se omlouvám za chybějící obsah a jiné nedodělky, ale pilně na projektu pracuji ve svém volném čase.

    @@ -97,7 +98,7 @@

    🚀 Dvoujádrový procesor (64 bitů, x86-64, amd64)

    🚀 15 GB místa na pevném disku

    - 🚀 Instalační program stále podporuje pouze starší systémy Bios, ale + 🚀 Instalační program stále podporuje starší systémy Bios, ale doporučuje se spouštět moderní systémy EFI (UEFI), které nejsou ve starším ( CSM ) režimu

    @@ -118,7 +119,7 @@

    Instalační program Calamares vás provede prvními kroky instalace systému s možností offline instalace KDE Plasma nebo online - instala ce se spoustou možností… + instalace se spoustou možností…

    diff --git a/novinky/index.html b/novinky/index.html index dc66ccc..667fc93 100644 --- a/novinky/index.html +++ b/novinky/index.html @@ -47,6 +47,7 @@
  • Telegram
  • O nás
  • +
  • Rozcestník
  • diff --git a/novinky/style.css b/novinky/style.css index 22f8ee9..ae2dc8b 100644 --- a/novinky/style.css +++ b/novinky/style.css @@ -84,7 +84,7 @@ p { header nav { position: absolute; top: 70px; - background-color: var(--special-blue); + background-color: #313131; width: 100%; display: none; } diff --git a/o-nas/index.html b/o-nas/index.html index b25a92a..59e323b 100644 --- a/o-nas/index.html +++ b/o-nas/index.html @@ -46,6 +46,7 @@ Discord
  • Telegram
  • +
  • Rozcestník
  • diff --git a/o-nas/style.css b/o-nas/style.css index ea209b1..d200b50 100644 --- a/o-nas/style.css +++ b/o-nas/style.css @@ -84,7 +84,7 @@ p { header nav { position: absolute; top: 70px; - background-color: var(--special-blue); + background-color: #313131; width: 100%; display: none; } diff --git a/rozcestnik/img/nicubunu.png b/rozcestnik/img/nicubunu.png new file mode 100644 index 0000000..1e58734 Binary files /dev/null and b/rozcestnik/img/nicubunu.png differ diff --git a/rozcestnik/index.html b/rozcestnik/index.html new file mode 100644 index 0000000..62253eb --- /dev/null +++ b/rozcestnik/index.html @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + EndeavourOS + + +
    + + + + + + + +
    +
    +
    +

    Rozcestník

    + +

    ⬇ Články ⬇

    +

    + Do historie EndeavourOS v časové smičce +

    ⬇ Wiki ⬇

    +

    + Bluetooth - Jak v EndeavourOS zprovoznit Bluetooth? +

    +

    + Správce oken - Jak v i3wm opravit nefunkční nastavení jasu + monitoru +

    + +
    +
    + + + + + + diff --git a/rozcestnik/script.js b/rozcestnik/script.js new file mode 100644 index 0000000..b82ae17 --- /dev/null +++ b/rozcestnik/script.js @@ -0,0 +1,35 @@ +const menuIcon = document.querySelector(".menu-icon"); +const menuList = document.querySelector("nav"); +const hamburgerIcon = document.querySelector(".fa-solid"); + +menuIcon.addEventListener("click", () => { + if (hamburgerIcon.classList[1] === "fa-bars") { + hamburgerIcon.classList.add("fa-xmark"); + hamburgerIcon.classList.remove("fa-bars"); + menuList.style.display = "block"; + } else { + hamburgerIcon.classList.add("fa-bars"); + hamburgerIcon.classList.remove("fa-xmark"); + menuList.style.display = "none"; + } +}); + +// Tlačítko go to top +// Zobrazení tlačítka od rolovaní části stránky (víc logické než až na konci) +window.onscroll = function () { + scrollFunction(); +}; + +function scrollFunction() { + if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { + document.getElementById("scrollToTopBtn").style.display = "block"; + } else { + document.getElementById("scrollToTopBtn").style.display = "none"; + } +} + +// Posunout nahoru, když uživatel klikne na tlačítko +function scrollToTop() { + document.body.scrollTop = 0; // Pro Safari + document.documentElement.scrollTop = 0; // Pro ostatní prohlížeče +} diff --git a/rozcestnik/style.css b/rozcestnik/style.css new file mode 100644 index 0000000..460c996 --- /dev/null +++ b/rozcestnik/style.css @@ -0,0 +1,184 @@ +* { + margin: 0; + + padding: 0; + + box-sizing: border-box; +} + +body { + max-width: 1600px; + margin: 0 auto; + font-family: "Ubuntu", sans-serif; +} + +/* EOS ( header) */ + +header { + display: flex; + align-items: center; + background-color: #313131; + height: 70px; + flex-direction: row; + /*position: fixed;*/ +} + +.logo { + flex-grow: 1; +} + +.logo img { + width: 150px; + margin-left: 40px; +} + +/* EOS - navigation */ +nav { + margin-right: 40px; +} + +nav li { + display: inline-block; + list-style-type: none; + margin-right: 20px; +} + +nav li a { + text-decoration: none; + color: #734f96; + /*border: 1px solid #734f96;*/ +} + +/* EOS - navigation icons */ + +.menu-icon { + display: none; + margin-right: 30px; +} + +/* EOS - Welcome*/ + +.welcome { + /*background: url("image/background.webp");*/ + min-height: calc(100vh - 70px); + background-size: cover; + /*background-position: center;*/ + text-align: center; +} +h2 { + color: #734f96; + margin-top: 50px; + margin-bottom: 50px; +} + +p { + margin: 10px; +} +.p { + text-align: center; +} +@media (max-width: 600px) { + header { + position: relative; + } + header nav { + position: absolute; + top: 70px; + background-color: #313131; + width: 100%; + display: none; + } + + .menu-icon { + display: block; + color: var(--special-white); + font-size: 23px; + } + + header nav li { + display: block !important; + text-align: center; + margin-top: 10px; + margin-bottom: 10px; + } +} + +/* About sekce */ + +.about-section { + margin: 45px 0; +} + +.about-section-wrapper { + width: 65%; + margin: 0 auto; + display: flex; + gap: 20px; +} + +.about-text { + flex: 1; +} + +.about-img { + flex: 1; +} +img { + width: 100%; + height: 100%; + object-fit: cover; +} +@media (max-width: 768px) { + .about-section-wrapper { + flex-direction: column; + width: 90%; + margin: 0 auto; + } + + .about-text { + text-align: left; + } + + .about-img { + text-align: center; + } + + .about-text-p { + padding-top: 15px; + } +} + +footer { + text-align: center; + margin-bottom: 10px; +} + +/* Go to go */ +#scrollToTopBtn { + display: none; + position: fixed; + bottom: 20px; + right: 20px; + /*butoon přes obsah*/ + z-index: 99; + outline: none; + cursor: pointer; + padding: 15px; + border-radius: 50%; + background-color: transparent; +} + +/* Pro rozcestník extra*/ + +img { + width: 25%; +} + +h1 { + color: #734f96; + margin-top: 50px; + font-size: 50px; +} +h4 a { + color: #734f96; +} diff --git a/style.css b/style.css index 22f8ee9..ae2dc8b 100644 --- a/style.css +++ b/style.css @@ -84,7 +84,7 @@ p { header nav { position: absolute; top: 70px; - background-color: var(--special-blue); + background-color: #313131; width: 100%; display: none; } diff --git a/wiki/bluetooth/img/Pasted-image-20240226010730.png b/wiki/bluetooth/img/Pasted-image-20240226010730.png new file mode 100644 index 0000000..555d320 Binary files /dev/null and b/wiki/bluetooth/img/Pasted-image-20240226010730.png differ diff --git a/wiki/bluetooth/img/Pasted-image-20240226010843-300x69.png b/wiki/bluetooth/img/Pasted-image-20240226010843-300x69.png new file mode 100644 index 0000000..74fb2e6 Binary files /dev/null and b/wiki/bluetooth/img/Pasted-image-20240226010843-300x69.png differ diff --git a/wiki/bluetooth/img/Pasted-image-20240226011309-300x39.png b/wiki/bluetooth/img/Pasted-image-20240226011309-300x39.png new file mode 100644 index 0000000..22737a4 Binary files /dev/null and b/wiki/bluetooth/img/Pasted-image-20240226011309-300x39.png differ diff --git a/wiki/bluetooth/img/Pasted-image-20240226012454-300x188.png b/wiki/bluetooth/img/Pasted-image-20240226012454-300x188.png new file mode 100644 index 0000000..1f6bf07 Binary files /dev/null and b/wiki/bluetooth/img/Pasted-image-20240226012454-300x188.png differ diff --git a/wiki/bluetooth/index.html b/wiki/bluetooth/index.html new file mode 100644 index 0000000..7ae6ec4 --- /dev/null +++ b/wiki/bluetooth/index.html @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + EndeavourOS + + +
    + + + + + + + +
    +
    +
    +

    Bluetooth

    +

    + + Jak v EndeavourOS zprovoznit Bluetooth? +

    +
    +
    + + + + + + diff --git a/wiki/bluetooth/jak-v-endeavouros-zprovoznit-bluetooth.html b/wiki/bluetooth/jak-v-endeavouros-zprovoznit-bluetooth.html new file mode 100644 index 0000000..54b7377 --- /dev/null +++ b/wiki/bluetooth/jak-v-endeavouros-zprovoznit-bluetooth.html @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + EndeavourOS + + +
    + + + + + + + +
    +
    +
    +

    Jak v EndeavourOS zprovoznit Bluetooth?

    +

    + Tento návod by měl být funkční na Arch Linux a distribucí z něj + vycházejících. +

    +

    Krok 1: Nainstalujte Bluez a Blueman

    +
    +

    Prvním krokem je instalace několika balíčků.

    +

    Nainstalujeme si:

    +

    + Bluez +

    +

    + Bluez-utils +

    +

    + Blueman +

    +
    +
    +            
    +            sudo pacman -S bluez 
    + sudo pacman -S bluez-utils
    + sudo pacman -S blueman + +
    + +
    + +

    + Ty by se měly nainstalovat bez problémů. Zde uvidíte úhlednou ikonu: +

    + +

    Dále se ujistěte, že je načten modul btusb Kernel:

    +
    +
    +            lsmod | grep btusb
    +          
    + +
    +

    + +

    Zde je trik, který mu pomůže najít adaptéry plug one:

    +
    +
    +            sudo vim /etc/bluetooth/main.conf
    +          
    + +
    + +

    Automaticky povolí Bluetooth:

    + +

    +
    +
    +            AutoEnable"true
    +          
    + +
    + +

    Uložte soubor.

    +

    2. Aktivujte Službu

    +
    +

    Zkusme spustit službu Bluetooth:

    +
    +
    +            sudo systemctl start bluetooth.service
    +          
    + +
    + +

    Automatické spuštění Bluetooth po startu povolíme tímto příkazem:

    +
    +
    +            sudo systemctl enable bluetooth.service
    +          
    + +
    +

    + Nyní bychom měli mít vše v provozu. Pomocí Blueman můžete spravovat + Bluetooth zařízení, kliknutím pravým tlačítkem myši na ikonu + Bluetooth. +

    +

    Nyní byste měli být připraveni na připojení a párování.

    +

    3. Párování

    +
    +

    Blueman dělá párování snadné.

    + +

    1. Vyberete zařízení.

    +

    2. Zahájit párování

    +

    A máte hotovo!

    +
    +
    + + + + + + diff --git a/wiki/bluetooth/script.js b/wiki/bluetooth/script.js new file mode 100644 index 0000000..6143c89 --- /dev/null +++ b/wiki/bluetooth/script.js @@ -0,0 +1,46 @@ +const menuIcon = document.querySelector(".menu-icon"); +const menuList = document.querySelector("nav"); +const hamburgerIcon = document.querySelector(".fa-solid"); + +menuIcon.addEventListener("click", () => { + if (hamburgerIcon.classList[1] === "fa-bars") { + hamburgerIcon.classList.add("fa-xmark"); + hamburgerIcon.classList.remove("fa-bars"); + menuList.style.display = "block"; + } else { + hamburgerIcon.classList.add("fa-bars"); + hamburgerIcon.classList.remove("fa-xmark"); + menuList.style.display = "none"; + } +}); + +// Tlačítko go to top +// Zobrazení tlačítka od rolovaní části stránky (víc logické než až na konci) +window.onscroll = function () { + scrollFunction(); +}; + +function scrollFunction() { + if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { + document.getElementById("scrollToTopBtn").style.display = "block"; + } else { + document.getElementById("scrollToTopBtn").style.display = "none"; + } +} + +// Posunout nahoru, když uživatel klikne na tlačítko +function scrollToTop() { + document.body.scrollTop = 0; // Pro Safari + document.documentElement.scrollTop = 0; // Pro ostatní prohlížeče +} + +// Code-box +document.getElementById("copy-button").addEventListener("click", function () { + var codeContent = document.getElementById("code-content"); + var range = document.createRange(); + range.selectNode(codeContent); + window.getSelection().removeAllRanges(); + window.getSelection().addRange(range); + document.execCommand("copy"); + window.getSelection().removeAllRanges(); +}); diff --git a/wiki/bluetooth/style.css b/wiki/bluetooth/style.css new file mode 100644 index 0000000..767b9fa --- /dev/null +++ b/wiki/bluetooth/style.css @@ -0,0 +1,213 @@ +* { + margin: 0; + + padding: 0; + + box-sizing: border-box; +} + +body { + max-width: 1600px; + margin: 0 auto; + font-family: "Ubuntu", sans-serif; +} + +/* EOS ( header) */ + +header { + display: flex; + align-items: center; + background-color: #313131; + height: 70px; + flex-direction: row; + /*position: fixed;*/ +} + +.logo { + flex-grow: 1; +} + +.logo img { + width: 150px; + margin-left: 40px; +} + +/* EOS - navigation */ +nav { + margin-right: 40px; +} + +nav li { + display: inline-block; + list-style-type: none; + margin-right: 20px; +} + +nav li a { + text-decoration: none; + color: #734f96; + /*border: 1px solid #734f96;*/ +} + +/* EOS - navigation icons */ + +.menu-icon { + display: none; + margin-right: 30px; +} + +/* EOS - Welcome*/ + +.welcome { + /*background: url("image/background.webp");*/ + min-height: calc(100vh - 70px); + background-size: cover; + /*background-position: center;*/ + text-align: center; +} +h2 { + color: #734f96; + margin-top: 50px; + margin-bottom: 50px; +} + +p { + margin: 10px; +} +.p { + text-align: center; +} +@media (max-width: 600px) { + header { + position: relative; + } + header nav { + position: absolute; + top: 70px; + background-color: #313131; + width: 100%; + display: none; + } + + .menu-icon { + display: block; + color: var(--special-white); + font-size: 23px; + } + + header nav li { + display: block !important; + text-align: center; + margin-top: 10px; + margin-bottom: 10px; + } +} + +/* About sekce */ + +.about-section { + margin: 45px 0; +} + +.about-section-wrapper { + width: 65%; + margin: 0 auto; + display: flex; + gap: 20px; +} + +.about-text { + flex: 1; +} + +.about-img { + flex: 1; +} +img { + width: 100%; + height: 100%; + object-fit: cover; +} +@media (max-width: 768px) { + .about-section-wrapper { + flex-direction: column; + width: 90%; + margin: 0 auto; + } + + .about-text { + text-align: left; + } + + .about-img { + text-align: center; + } + + .about-text-p { + padding-top: 15px; + } +} + +footer { + text-align: center; + margin-bottom: 10px; +} + +/* Go to go */ +#scrollToTopBtn { + display: none; + position: fixed; + bottom: 20px; + right: 20px; + /*butoon přes obsah*/ + z-index: 99; + outline: none; + cursor: pointer; + padding: 15px; + border-radius: 50%; + background-color: transparent; +} + +/* Různé - extra css */ +h1 { + color: #734f96; + margin-top: 50px; + font-size: 50px; +} + +h2 a { + color: #734f96; +} + +h3 { + color: #734f96; +} + +img { + width: 20%; +} + +/* CodeBox */ + +.code-box { + position: relative; + width: 500px; + height: auto; + border: 1px solid #734f96; + padding: 5px; + overflow: auto; + background-color: #313131; + color: yellowgreen; + margin: auto; + text-align: left; +} + +#copy-button { + position: absolute; + top: 10px; + right: 10px; + cursor: pointer; + color: whitesmoke; + background-color: transparent; + border: 1px solid #734f96; +} diff --git a/wiki/img/304px-I3_window_manager_logo.svg_-300x286-1.webp b/wiki/img/304px-I3_window_manager_logo.svg_-300x286-1.webp new file mode 100644 index 0000000..70306e7 Binary files /dev/null and b/wiki/img/304px-I3_window_manager_logo.svg_-300x286-1.webp differ diff --git a/wiki/img/AUR.webp b/wiki/img/AUR.webp new file mode 100644 index 0000000..57fa949 Binary files /dev/null and b/wiki/img/AUR.webp differ diff --git a/wiki/img/Applications.webp b/wiki/img/Applications.webp new file mode 100644 index 0000000..2dbfd6d Binary files /dev/null and b/wiki/img/Applications.webp differ diff --git a/wiki/img/Books.webp b/wiki/img/Books.webp new file mode 100644 index 0000000..b3aa84a Binary files /dev/null and b/wiki/img/Books.webp differ diff --git a/wiki/img/CAl.webp b/wiki/img/CAl.webp new file mode 100644 index 0000000..176f4ba Binary files /dev/null and b/wiki/img/CAl.webp differ diff --git a/wiki/img/EOS_polygons_V2_rubber_1920x1080_logo.webp b/wiki/img/EOS_polygons_V2_rubber_1920x1080_logo.webp new file mode 100644 index 0000000..330c85c Binary files /dev/null and b/wiki/img/EOS_polygons_V2_rubber_1920x1080_logo.webp differ diff --git a/wiki/img/Gnome-keyring.webp b/wiki/img/Gnome-keyring.webp new file mode 100644 index 0000000..43e198d Binary files /dev/null and b/wiki/img/Gnome-keyring.webp differ diff --git a/wiki/img/HDD-SSD-icon.webp b/wiki/img/HDD-SSD-icon.webp new file mode 100644 index 0000000..1e9bfdd Binary files /dev/null and b/wiki/img/HDD-SSD-icon.webp differ diff --git a/wiki/img/Intel.webp b/wiki/img/Intel.webp new file mode 100644 index 0000000..884ffbe Binary files /dev/null and b/wiki/img/Intel.webp differ diff --git a/wiki/img/Network.webp b/wiki/img/Network.webp new file mode 100644 index 0000000..47e3a81 Binary files /dev/null and b/wiki/img/Network.webp differ diff --git a/wiki/img/Nvidia-1.webp b/wiki/img/Nvidia-1.webp new file mode 100644 index 0000000..2f01355 Binary files /dev/null and b/wiki/img/Nvidia-1.webp differ diff --git a/wiki/img/Shadow-of-the-tomb-raider.webp b/wiki/img/Shadow-of-the-tomb-raider.webp new file mode 100644 index 0000000..9935dc8 Binary files /dev/null and b/wiki/img/Shadow-of-the-tomb-raider.webp differ diff --git a/wiki/img/arm-a7-640x353-1.webp b/wiki/img/arm-a7-640x353-1.webp new file mode 100644 index 0000000..7301046 Binary files /dev/null and b/wiki/img/arm-a7-640x353-1.webp differ diff --git a/wiki/img/audio.webp b/wiki/img/audio.webp new file mode 100644 index 0000000..a341698 Binary files /dev/null and b/wiki/img/audio.webp differ diff --git a/wiki/img/backlight_arch_by_karl_schneider_dazk2ky-scaled.webp b/wiki/img/backlight_arch_by_karl_schneider_dazk2ky-scaled.webp new file mode 100644 index 0000000..975d905 Binary files /dev/null and b/wiki/img/backlight_arch_by_karl_schneider_dazk2ky-scaled.webp differ diff --git a/wiki/img/bluetooth-logo-2-1024x614-1.webp b/wiki/img/bluetooth-logo-2-1024x614-1.webp new file mode 100644 index 0000000..b2daebd Binary files /dev/null and b/wiki/img/bluetooth-logo-2-1024x614-1.webp differ diff --git a/wiki/img/endeavour_2_nologo.webp b/wiki/img/endeavour_2_nologo.webp new file mode 100644 index 0000000..57126da Binary files /dev/null and b/wiki/img/endeavour_2_nologo.webp differ diff --git a/wiki/img/endeavour_3-scaled.webp b/wiki/img/endeavour_3-scaled.webp new file mode 100644 index 0000000..957fdf3 Binary files /dev/null and b/wiki/img/endeavour_3-scaled.webp differ diff --git a/wiki/img/hardware-linux.preview.webp b/wiki/img/hardware-linux.preview.webp new file mode 100644 index 0000000..e7dc4a9 Binary files /dev/null and b/wiki/img/hardware-linux.preview.webp differ diff --git a/wiki/img/hibernate-btrfs.webp b/wiki/img/hibernate-btrfs.webp new file mode 100644 index 0000000..fbe136b Binary files /dev/null and b/wiki/img/hibernate-btrfs.webp differ diff --git a/wiki/img/linux-sudo.webp b/wiki/img/linux-sudo.webp new file mode 100644 index 0000000..60eefd9 Binary files /dev/null and b/wiki/img/linux-sudo.webp differ diff --git a/wiki/img/linux_tux_penguins_1600x1200_w_1920x1200_.webp b/wiki/img/linux_tux_penguins_1600x1200_w_1920x1200_.webp new file mode 100644 index 0000000..835c93e Binary files /dev/null and b/wiki/img/linux_tux_penguins_1600x1200_w_1920x1200_.webp differ diff --git a/wiki/img/printer.webp b/wiki/img/printer.webp new file mode 100644 index 0000000..406afff Binary files /dev/null and b/wiki/img/printer.webp differ diff --git a/wiki/img/privacy-security-lock-ss-1920.webp b/wiki/img/privacy-security-lock-ss-1920.webp new file mode 100644 index 0000000..3624b6f Binary files /dev/null and b/wiki/img/privacy-security-lock-ss-1920.webp differ diff --git a/wiki/img/tux-b⁄w.webp b/wiki/img/tux-b⁄w.webp new file mode 100644 index 0000000..2a97080 Binary files /dev/null and b/wiki/img/tux-b⁄w.webp differ diff --git a/wiki/index.html b/wiki/index.html index bbd6d4f..9bfe7ad 100644 --- a/wiki/index.html +++ b/wiki/index.html @@ -47,6 +47,7 @@
  • Telegram
  • O nás
  • +
  • Rozcestník
  • @@ -58,9 +59,303 @@
    -
    -

    Na obsahu v této sekci pilně pracuji.

    + + +
    +

    Wiki EndeavourOS

    +
    +
    +
    + # +
    +

    Parametry jádra ACPI

    +
    Články týkající se jádra (kernel).
    +
    +
    +
    + # +
    +

    Aplikace

    +
    + Články týkající se aplikací jako Timeshift, Flatpak atd. +
    +
    +
    +
    + # +
    +

    ARM

    +
    + Návody k nastavení systému EndeavourOS ARM. +
    +
    +
    +
    + +
    +
    +
    +
    + # +
    +

    Různé články

    +
    Různé články.
    +
    +
    +
    + # +
    +

    Audio

    +
    + Články o zvuku, Pulseaudio a Pipewire. +
    +
    +
    +
    +
    + +
    +
    +
    +
    + # +
    +

    AUR

    +
    Vysvětlení k AUR a tutoriál yay.
    +
    +
    +
    + # +
    +

    Bluetooth

    +
    + Články pro nastavení Bluetooth a bezdrátového zvuku. +
    +
    +
    +
    + # +
    +

    BTRFS

    +
    Tutorial pro BTRFS.
    +
    +
    +
    +
    + +
    +
    +
    +
    + # +
    +

    Prostředí počítačů

    +
    + Odstranění, přidání a zlepšení výkonu Linux DE a Články o + správcích zobrazení. +
    +
    +
    +
    + # +
    +

    Šifrovaná instalace

    +
    + Jak nainstalovat EndeavourOS se šifrováním, LUKS a LUKS na + BTRFS. +
    +
    +
    +
    +
    + +
    +
    +
    +
    + # +
    +

    EndeavourOS nástroje

    +
    + Články o našich vlastních nástrojích EOS a komunitní pokyny pro + naše sociálních médií. +
    +
    +
    +
    + # +
    +

    Možnost nástroje pro záznam na fóra

    +
    + Snadný nástroj, který pomáhá komunitě na fóru řešit problémy. +
    +
    +
    +
    + # +
    +

    Hraní

    +
    + Jak nastavit EndeavourOS pro hráče. +
    +
    +
    +
    +
    + +
    +
    +
    +
    + # +
    +

    Grub a Refind

    +
    + Články o službě Grub a alternativě ke službě Grub, Refind. +
    +
    +
    +
    + # +
    +

    Hardware

    +
    + Výukový program pro snížení spotřeby energie a chlazení. +
    +
    +
    +
    +
    + +
    +
    +
    +
    + # +
    +

    Instalace

    +
    + Články o naší službě Live ISO, Calamares a další. +
    +
    +
    +
    + # +
    +

    Intel GPU

    +
    + Článek týkající se integrovaného grafického procesoru Intel. +
    +
    +
    +
    + # +
    +

    Síť Internet

    +
    + Články týkající se řešení různých síťových problémů. +
    +
    +
    +
    +
    + +
    +
    +
    +
    + # +
    +

    Nvidia

    +
    + Články o grafických procesorech Nvidia. +
    +
    +
    +
    + # +
    +

    Pacman

    +
    + Články, které vám pomohou lépe porozumět instalátoru Pacman a + příkazům. +
    +
    +
    +
    +
    + +
    +
    +
    +
    + # +
    +

    Tiskárny

    +
    + Návod na instalaci tiskáren v systému EndeavourOS. +
    +
    +
    +
    + # +
    +

    Podpis a klíčenka

    +
    + Článek o tom, co dělat, když vás Pacman varuje před podpisem a + problémy s klíčenkou. +
    +
    +
    +
    + # +
    +

    Úložiště a oddíly

    +
    + Různé články k prodloužení nebo řešení problémů s HDD, SSD, + NVME. +
    +
    +
    +
    +
    + +
    +
    +
    +
    + # +
    +

    Záchrana systému

    +
    + Řešení problémů se systémem pomocí Arch-chroot atd. +
    +
    +
    +
    + # +
    +

    Správci oken

    +
    Články o různých správcích oken.
    +
    +
    +
    +
    +

    + Vždy se pořádně přešvěč zě chápěš co děláš, pokud si nejsi jistý/tá nech + si poradit třeba na fóru nebo si dohledej k tématu další informace. Vždy + si pravidelně zálohuj nejdůležitější soubory a složku home. +

    + + + + + diff --git a/wiki/ruzne/script.js b/wiki/ruzne/script.js new file mode 100644 index 0000000..b82ae17 --- /dev/null +++ b/wiki/ruzne/script.js @@ -0,0 +1,35 @@ +const menuIcon = document.querySelector(".menu-icon"); +const menuList = document.querySelector("nav"); +const hamburgerIcon = document.querySelector(".fa-solid"); + +menuIcon.addEventListener("click", () => { + if (hamburgerIcon.classList[1] === "fa-bars") { + hamburgerIcon.classList.add("fa-xmark"); + hamburgerIcon.classList.remove("fa-bars"); + menuList.style.display = "block"; + } else { + hamburgerIcon.classList.add("fa-bars"); + hamburgerIcon.classList.remove("fa-xmark"); + menuList.style.display = "none"; + } +}); + +// Tlačítko go to top +// Zobrazení tlačítka od rolovaní části stránky (víc logické než až na konci) +window.onscroll = function () { + scrollFunction(); +}; + +function scrollFunction() { + if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { + document.getElementById("scrollToTopBtn").style.display = "block"; + } else { + document.getElementById("scrollToTopBtn").style.display = "none"; + } +} + +// Posunout nahoru, když uživatel klikne na tlačítko +function scrollToTop() { + document.body.scrollTop = 0; // Pro Safari + document.documentElement.scrollTop = 0; // Pro ostatní prohlížeče +} diff --git a/wiki/ruzne/style.css b/wiki/ruzne/style.css new file mode 100644 index 0000000..ab2fc9b --- /dev/null +++ b/wiki/ruzne/style.css @@ -0,0 +1,176 @@ +* { + margin: 0; + + padding: 0; + + box-sizing: border-box; +} + +body { + max-width: 1600px; + margin: 0 auto; + font-family: "Ubuntu", sans-serif; +} + +/* EOS ( header) */ + +header { + display: flex; + align-items: center; + background-color: #313131; + height: 70px; + flex-direction: row; + /*position: fixed;*/ +} + +.logo { + flex-grow: 1; +} + +.logo img { + width: 150px; + margin-left: 40px; +} + +/* EOS - navigation */ +nav { + margin-right: 40px; +} + +nav li { + display: inline-block; + list-style-type: none; + margin-right: 20px; +} + +nav li a { + text-decoration: none; + color: #734f96; + /*border: 1px solid #734f96;*/ +} + +/* EOS - navigation icons */ + +.menu-icon { + display: none; + margin-right: 30px; +} + +/* EOS - Welcome*/ + +.welcome { + /*background: url("image/background.webp");*/ + min-height: calc(100vh - 70px); + background-size: cover; + /*background-position: center;*/ + text-align: center; +} +h2 { + color: #734f96; + margin-top: 50px; + margin-bottom: 50px; +} + +p { + margin: 10px; +} +.p { + text-align: center; +} +@media (max-width: 600px) { + header { + position: relative; + } + header nav { + position: absolute; + top: 70px; + background-color: #313131; + width: 100%; + display: none; + } + + .menu-icon { + display: block; + color: var(--special-white); + font-size: 23px; + } + + header nav li { + display: block !important; + text-align: center; + margin-top: 10px; + margin-bottom: 10px; + } +} + +/* About sekce */ + +.about-section { + margin: 45px 0; +} + +.about-section-wrapper { + width: 65%; + margin: 0 auto; + display: flex; + gap: 20px; +} + +.about-text { + flex: 1; +} + +.about-img { + flex: 1; +} +img { + width: 100%; + height: 100%; + object-fit: cover; +} +@media (max-width: 768px) { + .about-section-wrapper { + flex-direction: column; + width: 90%; + margin: 0 auto; + } + + .about-text { + text-align: left; + } + + .about-img { + text-align: center; + } + + .about-text-p { + padding-top: 15px; + } +} + +footer { + text-align: center; + margin-bottom: 10px; +} + +/* Go to go */ +#scrollToTopBtn { + display: none; + position: fixed; + bottom: 20px; + right: 20px; + /*butoon přes obsah*/ + z-index: 99; + outline: none; + cursor: pointer; + padding: 15px; + border-radius: 50%; + background-color: transparent; +} + +/* Různé - extra css */ +h1 { + color: #734f96; + margin-top: 50px; + font-size: 50px; +} diff --git a/wiki/spravci-oken/index.html b/wiki/spravci-oken/index.html new file mode 100644 index 0000000..5cabcbf --- /dev/null +++ b/wiki/spravci-oken/index.html @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + EndeavourOS + + +
    + + + + + + + +
    +
    +
    +

    Správci oken

    +

    + Jak v i3wm opravit nefunkční nastavení jasu monitoru +

    +
    +
    + + + + + + diff --git a/wiki/spravci-oken/jak-v-i3wm-opravit-nefunkcni-nastaveni-jasu-monitoru.html b/wiki/spravci-oken/jak-v-i3wm-opravit-nefunkcni-nastaveni-jasu-monitoru.html new file mode 100644 index 0000000..ee9f86c --- /dev/null +++ b/wiki/spravci-oken/jak-v-i3wm-opravit-nefunkcni-nastaveni-jasu-monitoru.html @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + EndeavourOS + + +
    + + + + + + + +
    +
    +
    +

    Jak v i3wm opravit nefunkční nastavení jasu monitoru

    +

    + Pokud vám po instalaci i3wm nefunguje jas monitoru, náprava je poměrně + jednoduchá. +

    +

    Nainstalujte si brightnessctl pomocí příkazu:

    +
    +
    +            yay -S brightnessctl 
    +            
    +          
    + +
    + +

    + Restartujte počítač a otestujte funkčnost jasu monitoru. Změna se + provede tímto příkazem: +

    +
    +
    +            brightnessctl se 30 
    +            
    +          
    + +
    + +

    + Pokud se vám jas snížil na 30% je vš v přádku a můžeme pokračovat + nastavení ovládání jasu na klávesnici. +

    +

    Ovládání jasu pomocí klávesnice:

    +

    + Ve skriptu + ~/.config/i3/scripts/volume_brightness.sh na konci + změnit záznam na: +

    +
    +
    +    brightness_up)
    +     # Increases brightness and displays the notification
    +     brightnessctl set "10%+"
    +     show_brightness_notif
    +     ;;
    +            
    +
    +    brightness_down)
    +     # Decreases brightness and displays the notification
    +     brightnessctl set "10%-"
    +     show_brightness_notif
    +     ;;
    +          
    + +
    + +

    + A to je vše,teď by Vám nastavení jasu mělo jít pomocí funkčních + kláves. +

    +
    +
    + + + + + + diff --git a/wiki/spravci-oken/script.js b/wiki/spravci-oken/script.js new file mode 100644 index 0000000..95c71d4 --- /dev/null +++ b/wiki/spravci-oken/script.js @@ -0,0 +1,45 @@ +const menuIcon = document.querySelector(".menu-icon"); +const menuList = document.querySelector("nav"); +const hamburgerIcon = document.querySelector(".fa-solid"); + +menuIcon.addEventListener("click", () => { + if (hamburgerIcon.classList[1] === "fa-bars") { + hamburgerIcon.classList.add("fa-xmark"); + hamburgerIcon.classList.remove("fa-bars"); + menuList.style.display = "block"; + } else { + hamburgerIcon.classList.add("fa-bars"); + hamburgerIcon.classList.remove("fa-xmark"); + menuList.style.display = "none"; + } +}); + +// Tlačítko go to top +// Zobrazení tlačítka od rolovaní části stránky (víc logické než až na konci) +window.onscroll = function () { + scrollFunction(); +}; + +function scrollFunction() { + if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { + document.getElementById("scrollToTopBtn").style.display = "block"; + } else { + document.getElementById("scrollToTopBtn").style.display = "none"; + } +} + +// Posunout nahoru, když uživatel klikne na tlačítko +function scrollToTop() { + document.body.scrollTop = 0; // Pro Safari + document.documentElement.scrollTop = 0; // Pro ostatní prohlížeče +} +// Code-box +document.getElementById("copy-button").addEventListener("click", function () { + var codeContent = document.getElementById("code-content"); + var range = document.createRange(); + range.selectNode(codeContent); + window.getSelection().removeAllRanges(); + window.getSelection().addRange(range); + document.execCommand("copy"); + window.getSelection().removeAllRanges(); +}); diff --git a/wiki/spravci-oken/style.css b/wiki/spravci-oken/style.css new file mode 100644 index 0000000..50b5188 --- /dev/null +++ b/wiki/spravci-oken/style.css @@ -0,0 +1,211 @@ +* { + margin: 0; + + padding: 0; + + box-sizing: border-box; +} + +body { + max-width: 1600px; + margin: 0 auto; + font-family: "Ubuntu", sans-serif; +} + +/* EOS ( header) */ + +header { + display: flex; + align-items: center; + background-color: #313131; + height: 70px; + flex-direction: row; + /*position: fixed;*/ +} + +.logo { + flex-grow: 1; +} + +.logo img { + width: 150px; + margin-left: 40px; +} + +/* EOS - navigation */ +nav { + margin-right: 40px; +} + +nav li { + display: inline-block; + list-style-type: none; + margin-right: 20px; +} + +nav li a { + text-decoration: none; + color: #734f96; + /*border: 1px solid #734f96;*/ +} + +/* EOS - navigation icons */ + +.menu-icon { + display: none; + margin-right: 30px; +} + +/* EOS - Welcome*/ + +.welcome { + /*background: url("image/background.webp");*/ + min-height: calc(100vh - 70px); + background-size: cover; + /*background-position: center;*/ + text-align: center; +} +h2 { + color: #734f96; + margin-top: 50px; + margin-bottom: 50px; +} + +p { + margin: 10px; +} +.p { + text-align: center; +} +@media (max-width: 600px) { + header { + position: relative; + } + header nav { + position: absolute; + top: 70px; + background-color: #313131; + width: 100%; + display: none; + } + + .menu-icon { + display: block; + color: var(--special-white); + font-size: 23px; + } + + header nav li { + display: block !important; + text-align: center; + margin-top: 10px; + margin-bottom: 10px; + } +} + +/* About sekce */ + +.about-section { + margin: 45px 0; +} + +.about-section-wrapper { + width: 65%; + margin: 0 auto; + display: flex; + gap: 20px; +} + +.about-text { + flex: 1; +} + +.about-img { + flex: 1; +} +img { + width: 100%; + height: 100%; + object-fit: cover; +} +@media (max-width: 768px) { + .about-section-wrapper { + flex-direction: column; + width: 90%; + margin: 0 auto; + } + + .about-text { + text-align: left; + } + + .about-img { + text-align: center; + } + + .about-text-p { + padding-top: 15px; + } +} + +footer { + text-align: center; + margin-bottom: 10px; +} + +/* Go to go */ +#scrollToTopBtn { + display: none; + position: fixed; + bottom: 20px; + right: 20px; + /*butoon přes obsah*/ + z-index: 99; + outline: none; + cursor: pointer; + padding: 15px; + border-radius: 50%; + background-color: transparent; +} + +/* Různé - extra css */ +h1 { + color: #734f96; + margin-top: 50px; + font-size: 50px; +} + +h2 a { + color: #734f96; +} + +h3 { + color: #734f96; +} + +/* CodeBox */ + +/* CodeBox */ + +.code-box { + position: relative; + width: 500px; + height: auto; + border: 1px solid #734f96; + padding: 5px; + overflow: auto; + background-color: #313131; + color: yellowgreen; + margin: auto; + text-align: left; +} + +#copy-button { + position: absolute; + top: 10px; + right: 10px; + cursor: pointer; + color: whitesmoke; + background-color: transparent; + border: 1px solid #734f96; +} diff --git a/wiki/style.css b/wiki/style.css index 22f8ee9..5a673bc 100644 --- a/wiki/style.css +++ b/wiki/style.css @@ -70,6 +70,9 @@ h2 { margin-top: 50px; margin-bottom: 50px; } +h3 { + text-align: center; +} p { margin: 10px; @@ -84,7 +87,7 @@ p { header nav { position: absolute; top: 70px; - background-color: var(--special-blue); + background-color: #313131; width: 100%; display: none; } @@ -167,3 +170,177 @@ footer { border-radius: 50%; background-color: transparent; } + +/* What We Do */ + +.what-section { + background-color: var(--background-one); + color: var(--word-white); +} + +.what-section-wrapper { + width: 65%; + margin: 0 auto; +} +.what-text { + text-align: center; +} +.h2-what-we { + font-size: 38px; + text-align: center; + padding-top: 45px; + padding-bottom: 35px; +} + +.where-text { + text-align: center; +} +.icon-what-section { + margin-top: 45px; + padding: 45px; + list-style: none; + display: flex; + justify-content: space-between; + flex-grow: 1; +} + +.img-icons { + width: 100px; + height: 100px; + align-items: center; +} + +.icon-text { + text-align: center; + padding-top: 15px; + font-size: 25px; +} + +@media (max-width: 768px) { + .what-section-wrapper { + width: 90%; + margin: 0 auto; + } + + .icon-what-section { + flex-direction: column; + align-items: center; + text-align: center; + } + + .img-icons { + width: 80px; + height: 80px; + margin-top: 20px; + align-items: center; + } + + .icon-text { + padding-top: 0px; + } +} +/* Reviews section */ + +.reviews-section { + width: 45%; + margin: 0 auto; + margin-top: 25px; + margin-bottom: 25px; +} +.h2-reviews { + text-align: center; + padding-bottom: 20px; +} +.reviews-text { + width: 132px; + height: 59px; + text-align: center; + margin: auto; +} + +.reviews-card-wrapper { + display: flex; + align-items: center; + justify-content: space-evenly; + gap: 300px; +} + +.reviews-card { + width: 378.49px; + height: 346px; + text-align: center; +} + +.reviews-card-1 { + width: 378.49px; + height: 346px; + text-align: center; +} +.reviews-card-2 { + width: 378.49px; + height: 346px; + text-align: center; +} + +.reviews-card img { + width: 122.13px; + height: 111px; + border-radius: 50%; +} + +.reviews-card-1 img { + width: 122.13px; + height: 111px; + border-radius: 50%; +} +.reviews-card-2 img { + width: 122.13px; + height: 111px; + border-radius: 50%; +} + +.reviews-card-text { + margin-top: 20px; +} + +.reviews-name { + font-weight: 700; + padding-top: 50px; + height: 19px; + align-items: center; +} + +@media (max-width: 768px) { + .reviews-section { + width: 90%; + margin: 0 auto; + } + + .reviews-card-wrapper { + flex-direction: column; + width: 90%; + margin: 0 auto; + gap: 95px; + } + .reviews-card { + width: 324px; + } + + .reviews-card-1 { + width: 324px; + } + .reviews-card-2 { + width: 324px; + } + .reviews-text { + width: 263px; + } + + .h2-reviews { + padding-top: 40px; + } + + .reviews-name { + padding-bottom: 40px; + } +}