| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
English | Nederlands
Linux on the ASUS ROG Zephyrus G16 GA605WV (2024). My personal setup log for the two distributions I run on it, CachyOS and Bazzite: what worked, what didn't, and how I fixed it.
Browse the full documentation site: zephyrus-linux.thectic.nl
This is my personal setup log for this laptop. I'm not a developer, just someone who switched to Linux and ran into a lot of things that didn't work out of the box. I wrote it all down so others don't have to go through the same trial and error.
The guides cover CachyOS (Arch) and Bazzite (Fedora Atomic). I've daily-driven both and switch between them; I'm on Bazzite at the moment. The site's Getting Started page explains the choice, and a switcher at the top of every page moves between the two sets of guides.
I'm still actively testing and experimenting: things may change, break, or turn out to be wrong. Everything here is based on my own experience and should be taken as-is, at your own risk.
I am not affiliated with, endorsed by, or acting on behalf of ASUS, NVIDIA, Microsoft, CachyOS, Universal Blue, or any other company or project mentioned here.
This documentation site is built with Hugo using the Hextra theme. The theme is managed as a Hugo module (via Go modules, no git submodules).
Prerequisites:
On Arch Linux / CachyOS:
sudo pacman -S hugo goClone the repository:
git clone https://github.com/THectic-NL/Zephyrus-Linux.git
cd Zephyrus-LinuxHugo automatically downloads the theme module on first run.
Run the development server:
cd src
hugo serverThe site is available at http://localhost:1313/. Hugo watches for file changes and reloads automatically.
Build for production:
cd src
hugo --gc --minifyThe output is written to ./src/public/. On push to main, GitHub Actions builds the site and deploys it to Bunny.net (Storage zone + Pull Zone) at zephyrus-linux.thectic.nl.
All images in this repository use the AVIF format: open, royalty-free, and more efficient than PNG or JPEG at equivalent quality. AVIF is the modern standard for web images.
To convert PNG screenshots to AVIF, install avifenc from the libavif package:
sudo pacman -S libavifBatch convert all PNGs in src/static/images/ (converts and removes originals):
cd src/static/images
for f in *.png; do avifenc -q 80 -s 6 "$f" "${f%.png}.avif" && rm "$f"; doneThis project wouldn't exist without the work of these people and communities:
This project is licensed under the MIT License.
| Back | FazBrowse Home | New Git URL |