Skip to content
Open
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
1 change: 0 additions & 1 deletion .gitkeep
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img width="1430" height="892" alt="image" src="https://github.com/user-attachments/assets/6709be99-ea56-44c9-8863-fc784c0c744f" />
<img width="1430" height="892" alt="KibaOS Budgie Desktop with Arc-Dark theme and Papirus-Dark icons" src="https://github.com/user-attachments/assets/6709be99-ea56-44c9-8863-fc784c0c744f" />

</p>

Expand All @@ -19,7 +19,7 @@
<img src="https://img.shields.io/github/last-commit/WolfTech-Innovations/Kiba?style=flat-square" alt="Last Commit">
</p>

KibaOS is a lightweight Linux distribution built on **Arch Linux base (Rolling)** with **Budgie Desktop Enviroment** as the desktop environment. KibaOS is developed and maintained by **WolfTech Innovations**.
KibaOS is a lightweight Linux distribution built on **Arch Linux base (Rolling)** with **Budgie Desktop Environment** as the desktop environment. KibaOS is developed and maintained by **WolfTech Innovations**.

<p align="center">
<a href="https://sourceforge.net/projects/kibaos/files/latest/download">
Expand Down Expand Up @@ -71,7 +71,7 @@ For a more in-depth look at KibaOS, check out our detailed documentation:
- [**Software Management**](./docs/software-management.md): KibaStore, Nala, and Flatpaks.
- [**Security & Compliance**](./docs/security-compliance.md): Privacy and AB 2273 compliance.
- [**Build System**](./docs/build-system.md): How we build and release KibaOS.
- [**Manual Compilation**](./docs/manual-compilation.md): Building the Budgie Desktop Enviroment from source.
- [**Manual Compilation**](./docs/manual-compilation.md): Building the Budgie Desktop Environment from source.
- [**FAQ**](./docs/faq.md): Frequently asked questions.
- [**WIKI**](./WIKI.md): Comprehensive technical manual.

Expand All @@ -81,7 +81,7 @@ For a more in-depth look at KibaOS, check out our detailed documentation:

- **Arch Linux Base:** Built on **Arch Linux Rolling**
- **Deep Cloud Integration:** System-wide file and setting sync powered by Cloud Services. Built on **Arch Linux Rolling** (supported until 2030).
- **Modern Desktop:** **Budgie Desktop Enviroment** with **Wayland** as the default session.
- **Modern Desktop:** **Budgie Desktop Environment** with **Wayland** as the default session.
- **Dracula Aesthetic:** **Dracula** color scheme applied system-wide — terminal, widgets, window decorations, and the panel.
- **Polished UI:** Floating rounded taskbar and 12px rounded window corners via **KWin** compositor.
- **Optimized Shell:** **Zsh** as the default shell with autosuggestions and syntax highlighting.
Expand Down
1 change: 0 additions & 1 deletion branding/.gitkeep
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@

9 changes: 5 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1490,7 +1490,7 @@ cp -aT "${SKEL}/" /home/liveuser/
chown -R 1000:1000 /home/liveuser
chmod 750 /home/liveuser
ufw default deny incoming
ufw default allow outgoing
ufw default allow outgoing
ufw enable
systemctl enable ufw
# ══════════════════════════════════════════════════════════════════════════
Expand Down Expand Up @@ -1612,6 +1612,7 @@ cat > /usr/share/kibaos/welcome.html << 'WELCOMEHTML'
transition: background .12s;
}
.btn:hover { background:var(--accent-dark); }
.btn:focus-visible { outline: 2px solid #003f5c; outline-offset: 2px; }
.btn.secondary {
background:var(--surface); color:var(--accent);
border:1.5px solid var(--border);
Expand Down Expand Up @@ -1661,9 +1662,9 @@ cat > /usr/share/kibaos/welcome.html << 'WELCOMEHTML'
<p>Click <strong>Install KibaOS</strong> on the desktop, or run:</p>
<div class="tip"><code>sudo calamares</code></div>
<br>
<a class="btn" href="https://github.com/WolfTech-Innovations/Kiba/blob/main/WIKI.md">Wiki</a>
<a class="btn secondary" href="https://github.com/WolfTech-Innovations/Kiba/issues">Report Issue</a>
<a class="btn secondary" href="https://github.com/WolfTech-Innovations/Kiba">GitHub</a>
<a class="btn" href="https://github.com/WolfTech-Innovations/Kiba/blob/main/WIKI.md" aria-label="Read the KibaOS Wiki">📖 Wiki</a>
<a class="btn secondary" href="https://github.com/WolfTech-Innovations/Kiba/issues" aria-label="Report an issue on GitHub">🐞 Report Issue</a>
<a class="btn secondary" href="https://github.com/WolfTech-Innovations/Kiba" aria-label="View the source code on GitHub">🐙 GitHub</a>

<h2>Design Language</h2>
<p>KibaOS's visual identity draws from three reference desktops:</p>
Expand Down
4 changes: 4 additions & 0 deletions scripts/repo_audit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ fi

# 2. Markdown Hygiene
echo "--- Auditing Markdown files ---"
# "Enviroment" typo (KibaOS standard is "Environment")
if grep -r "Enviroment" . --include="*.md" | grep -v "node_modules"; then
log_error "Found 'Enviroment' typo in documentation"
fi
# Empty links
if grep -rE "\[[^]]*\]\(\)" . --include="*.md" | grep -v "node_modules"; then
log_error "Found empty markdown targets"
Expand Down