-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switched to pnpm, Added catppuccin theme, Added Contributors Page, Ov…
…erhauled Every Article
- Loading branch information
1 parent
6008dd0
commit 04d505b
Showing
49 changed files
with
2,686 additions
and
5,268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,3 @@ | ||
<h1 align="center"> | ||
|
||
ArchWiki - OCD Edition | ||
|
||
<img src="https://archlinux.org/static/logos/archlinux-logo-light-scalable.1ae4cc2e2469.svg" width="200" alt="Arch Linux Logo" /> | ||
|
||
</h1> | ||
|
||
Welcome to **ArchWiki - OCD Edition**: your meticulously organized and alternative source for Arch Linux documentation. Designed for enthusiasts and beginners alike, this wiki offers a seamless guide to installaing Arch Linux. | ||
|
||
<a href="https://archlinux.org/" target="_blank"><img alt="Arch" src="https://img.shields.io/badge/ARCH-1793D1?style=flat-square" width="65"></a> <a href="https://Justus0405.github.io/Arch-Wiki/" target="_blank"><img alt="Wiki" src="https://img.shields.io/badge/WIKI-98c379?style=flat-square" width="58"></a> | ||
|
||
## About | ||
|
||
This project aims to provide a structured and user-friendly alternative to the traditional Arch Wiki. The **OCD Edition** ensures clarity and completeness while maintaining Arch Linux's philosophy of simplicity and customization. | ||
|
||
## Explore the Documentation | ||
|
||
Visit the full ArchWiki - OCD Edition at: [Arch-Wiki Documentation](https://Justus0405.github.io/Arch-Wiki/) | ||
|
||
|
||
[check]: https://github.com/Justus0405/Arch-Wiki/actions/workflows/deploy.yml/badge.svg | ||
[link]: https://github.com/Justus0405/Arch-Wiki/actions/workflows/deploy.yml | ||
![Arch Linux Logo](https://archlinux.org/static/logos/archlinux-logo-light-scalable.1ae4cc2e2469.svg) | ||
|
||
Welcome to the ArchWiki - OCD Edition: your alternative source for Arch Linux documentation on the web. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
import { defineConfig } from 'vitepress' | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: "Arch Wiki", | ||
description: "My Personal Arch Linux Notes", | ||
base: "/Arch-Wiki/", | ||
head: [ | ||
["link", { rel: "icon", href: "/Arch-Wiki/archx.webp" }] | ||
], | ||
|
||
themeConfig: { | ||
logo: "/archx.webp", | ||
// https://vitepress.dev/reference/default-theme-config | ||
nav: [ | ||
{ text: "Home", link: "/" }, | ||
{ text: "Guide", link: "/getting-started/introduction" }, | ||
{ | ||
text: "Resources", | ||
items: [ | ||
{ text: "Download Arch Linux", link: "https://archlinux.org/download/" }, | ||
{ text: "Arch Wiki", link: "https://wiki.archlinux.org/" } | ||
], | ||
}, | ||
], | ||
sidebar: [ | ||
{ | ||
text: 'Getting Started', | ||
collapsible: true, | ||
collapsed: false, | ||
items: [ | ||
{ text: 'Base-Installation', link: '/1-getting-started/inside-iso.md' }, | ||
{ text: 'Enviroment-Installation', link: '/1-getting-started/inside-enviroment.md' }, | ||
{ text: 'Grub-Installation', link: '/1-getting-started/grub-install.md' } | ||
] | ||
}, | ||
{ | ||
text: 'Pacman', | ||
collapsible: true, | ||
collapsed: false, | ||
items: [ | ||
{ text: 'Pacman', link: '/2-pacman/pacman.md' }, | ||
{ text: 'Mirror List', link: '/2-pacman/mirrorlist.md' }, | ||
{ text: 'Keyring Troubleshooting', link: '/2-pacman/keyrings.md' } | ||
] | ||
}, | ||
{ | ||
text: 'Graphics Drivers', | ||
collapsible: true, | ||
collapsed: false, | ||
items: [ | ||
{ text: 'Nvidia', link: '/3-gpu-drivers/install-nvidia.md' }, | ||
{ text: 'Nvidia Depricated', link: '/3-gpu-drivers/nvidia-depricated.md' } | ||
] | ||
}, | ||
{ | ||
text: 'Sound', | ||
collapsible: true, | ||
collapsed: false, | ||
items: [ | ||
{ text: 'PipeWire Setup', link: '/4-sound/pipewire.md' } | ||
] | ||
}, | ||
{ | ||
text: 'Desktop Environments', | ||
collapsible: true, | ||
collapsed: false, | ||
items: [ | ||
{ text: 'GNOME Installation', link: '/5-desktop/install-gnome.md' } | ||
] | ||
}, | ||
{ | ||
text: 'Tiling Window Managers', | ||
collapsible: true, | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Hyprland', link: '/6-wm/hyprland.md' }, | ||
{ text: 'i3wm', link: '/6-wm/i3.md' }, | ||
{ text: 'Dwm', link: '/6-wm/dwm.md' } | ||
] | ||
}, | ||
{ | ||
text: 'Essential Configurations', | ||
collapsible: true, | ||
collapsed: false, | ||
items: [ | ||
{ text: 'Fonts', link: '/7-essentials/install-fonts.md' }, | ||
{ text: 'NTP Setup', link: '/7-essentials/ntp.md' } | ||
] | ||
}, | ||
{ | ||
text: 'Laptop-Specific', | ||
collapsible: true, | ||
collapsed: false, | ||
items: [ | ||
{ text: 'Prevent Lid closing', link: '/8-laptop/prevent-lid.md' }, | ||
{ text: 'Battery Optimization', link: '/8-laptop/battery-optimizations.md' } | ||
] | ||
}, | ||
{ | ||
text: 'Special Thanks', | ||
collapsible: true, | ||
collapsed: false, | ||
items: [ | ||
{ text: 'Contributors', link: '/9-extra/contributors.md' } | ||
] | ||
} | ||
], | ||
|
||
socialLinks: [ | ||
{ icon: "github", link: "https://github.com/Justus0405" }, | ||
{ icon: "discord", link: "https://discord.com/invite/E2Bp7GtcaA" } | ||
], | ||
|
||
search: { | ||
provider: "local" | ||
}, | ||
returnToTopLabel: 'Return to Top', | ||
sidebarMenuLabel: 'Sidebar Menu' | ||
} | ||
}) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
// https://vitepress.dev/guide/custom-theme | ||
import { h } from 'vue' | ||
import type { Theme } from 'vitepress' | ||
import DefaultTheme from 'vitepress/theme' | ||
import DefaultTheme from "vitepress/theme"; | ||
import "@catppuccin/vitepress/theme/mocha/blue.css"; | ||
|
||
export default { | ||
extends: DefaultTheme, | ||
Layout: () => { | ||
return h(DefaultTheme.Layout, null, { | ||
}) | ||
}, | ||
enhanceApp({ app, router, siteData }) { | ||
} | ||
} satisfies Theme | ||
export default DefaultTheme; |
Oops, something went wrong.