Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
if-no-files-found: error
include-hidden-files: true
retention-days: 1

call-jekyll-build:
needs: prep
uses: LizardByte/LizardByte.github.io/.github/workflows/jekyll-build.yml@master
Expand Down Expand Up @@ -110,15 +110,14 @@ CONFIG_FILE: _config.yml
EXTRACT_ARCHIVE: pre_built_database.zip # if there is a nested archive to extract
GITHUB_TIMEOUT: 10 # timeout in minutes to use when searching for GitHub artifacts, max 15
THEME_REF: master
```
```

Additionally, do the following:

1. Deactivate the `stable` version
2. Make the `latest` version hidden
3. Add project as a subproject of `LizardByte-gh-pages-main`
4. Update branch protection rules in GitHub repo settings to require status checks from ReadTheDocs
5. Add the below `.readthedocs.yaml` file to the root of the repo, or a custom path as specified in the project settings
3. Update branch protection rules in GitHub repo settings to require status checks from ReadTheDocs
4. Add the below `.readthedocs.yaml` file to the root of the repo, or a custom path as specified in the project settings

```yml
---
Expand Down
1 change: 1 addition & 0 deletions _config_theme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ exclude:
- Gemfile.lock
- LICENSE
- README.md
- scripts/

include:
- .well-known
Expand Down
3 changes: 2 additions & 1 deletion _posts/2025-01-06-welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ gh-repo: LizardByte/LizardByte.github.io
gh-badge: [follow, star]
tags: [news]
comments: true
author: ReenigneArcher
authors:
- github: ReenigneArcher
---

We're thrilled to have you here. This blog is your go-to source for all the latest announcements, updates, and news about LizardByte projects. Whether you're a developer, a tech enthusiast, or just curious about what we do, you'll find valuable insights and information here.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ gh-repo: LizardByte/LizardByte.github.io
gh-badge: [follow, star]
tags: [community-guide, community-guide-sunshine, linux, sunshine]
comments: true
author: e-dong
authors:
- github: e-dong

distro-tabs:
- name: 'Debian based'
Expand All @@ -24,7 +25,7 @@ distro-tabs:
# e.g. sudo pacman -S openssh-runit
```
- name: 'Alpine based'
content:
content:
- |
```bash
sudo apk update
Expand All @@ -42,7 +43,7 @@ distro-tabs:
```bash
sudo yum install openssh-server
```

service-tabs:
- name: SystemD
content:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ gh-repo: LizardByte/LizardByte.github.io
gh-badge: [follow, star]
tags: [community-guide, community-guide-sunshine, linux, sunshine, discord]
comments: true
author: RickAndTired
authors:
- github: RickAndTired
---

1. Set your normal *Sound Output* volume to 100%
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ gh-repo: LizardByte/LizardByte.github.io
gh-badge: [follow, star]
tags: [community-guide, community-guide-sunshine, windows, sunshine, discord]
comments: true
author: BeeLeDev
authors:
- github: BeeLeDev
---

## Voicemeeter Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ gh-repo: LizardByte/LizardByte.github.io
gh-badge: [follow, star]
tags: [community-guide, community-guide-sunshine, linux, sunshine]
comments: true
author: MidwesternRodent
authors:
- github: MidwesternRodent

editor-tabs:
- name: 'nano'
Expand Down Expand Up @@ -200,7 +201,7 @@ allowed to access this machine over SSH, and will allow us to establish an SSH c
to the SSH server running on the localhost.

```bash
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
```

{% include admonition.html type="tip" body="
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ gh-badge: [follow, star]
tags: [clion, c++, cpp, cmake, dev, guide, linux, macos, windows]
thumbnail-img: /assets/img/thumbnails/clion.png
comments: true
author: ReenigneArcher
authors:
- github: ReenigneArcher
---

## Introduction
Expand Down Expand Up @@ -37,9 +38,9 @@ and from a single system.

```Dockerfile
FROM ubuntu:22.04

RUN DEBIAN_FRONTEND="noninteractive" apt-get update && apt-get -y install tzdata

RUN apt-get update \
&& apt-get install -y build-essential \
gcc \
Expand Down
7 changes: 4 additions & 3 deletions _posts/guides/2024-12-08-git-commit-signing-in-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ gh-repo: LizardByte/LizardByte.github.io
gh-badge: [follow, star]
tags: [dev, git, github, guide, windows]
comments: true
author: ReenigneArcher
authors:
- github: ReenigneArcher
---

## Introduction
Expand All @@ -20,7 +21,7 @@ This post will show you how to sign your Git commits in Windows using GPG and Kl
1. Open Kleopatra and select "New Key Pair"

![New Key Pair](/assets/img/posts/2024-12-08-git-commit-signing-in-windows/new-key-pair.png)

2. Enter your GitHub username and email. The email must be one you have assigned to your GitHub account.
You can find your no-reply email https://github.com/settings/emails on this page if you have one set.
3. Optionally, expand "Advanced Options" and change the "Key Material" option. I used "rsa4096".
Expand Down Expand Up @@ -122,7 +123,7 @@ This approach will allow previously verified commits to remain verified.
and edit each commit to adjust. Finally, when you amend the commit do so with the following command.

```bash
git commit --amend --date=now --no-edit
git commit --amend --date=now --no-edit
```

## Conclusion
Expand Down
3 changes: 2 additions & 1 deletion _posts/releases/sunshine/2025-01-18-v2025.118.151840.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ gh-badge: [follow, fork, star]
tags: [release, sunshine]
release-tag: v2025.118.151840
comments: true
author: LizardByte-bot
authors:
- github: LizardByte-bot
---

## Attention
Expand Down
3 changes: 2 additions & 1 deletion _posts/releases/sunshine/2025-01-22-v2025.122.141614.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ gh-repo: LizardByte/Sunshine
gh-badge: [follow, fork, star]
tags: [release, sunshine]
comments: true
author: LizardByte-bot
authors:
- github: LizardByte-bot
---

## What's Changed
Expand Down
3 changes: 2 additions & 1 deletion _posts/releases/sunshine/2025-06-28-v2025.628.4510.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ gh-repo: LizardByte/Sunshine
gh-badge: [follow, fork, star]
tags: [release, sunshine]
comments: true
author: LizardByte-bot
authors:
- github: LizardByte-bot
---

## Attention
Expand Down