diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml
index 443a09ff3..3a50a9026 100644
--- a/.github/workflows/push.yml
+++ b/.github/workflows/push.yml
@@ -289,7 +289,7 @@ jobs:
path: ./fastfetch-*-Win32.zip
release:
- if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'LinusDierheimer/fastfetch'
+ if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'fastfetch-cli/fastfetch'
name: Release
runs-on: ubuntu-latest
needs:
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d5dc8cf66..9d55b02b5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,7 +4,7 @@ project(fastfetch
VERSION 1.11.3
LANGUAGES C
DESCRIPTION "Fast system information tool"
- HOMEPAGE_URL "https://github.com/LinusDierheimer/fastfetch"
+ HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"
)
set(PROJECT_LICENSE "MIT license")
diff --git a/README.md b/README.md
index c90f944a0..7a60115c5 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ Fastfetch is a [neofetch](https://github.com/dylanaraps/neofetch)-like tool for
-There are [screenshots on different platforms](https://github.com/LinusDierheimer/fastfetch/wiki)
+There are [screenshots on different platforms](https://github.com/fastfetch-cli/fastfetch/wiki)
## Customization
diff --git a/src/detection/packages/packages_linux.c b/src/detection/packages/packages_linux.c
index 4a9c483a0..81c1be565 100644
--- a/src/detection/packages/packages_linux.c
+++ b/src/detection/packages/packages_linux.c
@@ -134,7 +134,7 @@ static uint32_t getNixPackagesImpl(char* path)
FF_STRBUF_AUTO_DESTROY output = ffStrbufCreateA(128);
- //https://github.com/LinusDierheimer/fastfetch/issues/195#issuecomment-1191748222
+ //https://github.com/fastfetch-cli/fastfetch/issues/195#issuecomment-1191748222
FF_STRBUF_AUTO_DESTROY command = ffStrbufCreateA(255);
ffStrbufAppendS(&command, "for x in $(nix-store --query --requisites ");
ffStrbufAppendS(&command, path);
diff --git a/src/detection/terminalshell/terminalshell_linux.c b/src/detection/terminalshell/terminalshell_linux.c
index e69e3617d..1c6188601 100644
--- a/src/detection/terminalshell/terminalshell_linux.c
+++ b/src/detection/terminalshell/terminalshell_linux.c
@@ -368,7 +368,7 @@ const FFTerminalShellResult* ffDetectTerminalShell(const FFinstance* instance)
ffStrbufInitS(&result.shellPrettyName, "xonsh");
else
{
- // https://github.com/LinusDierheimer/fastfetch/discussions/280#discussioncomment-3831734
+ // https://github.com/fastfetch-cli/fastfetch/discussions/280#discussioncomment-3831734
ffStrbufInitS(&result.shellPrettyName, result.shellExeName);
}