Skip to content
Draft
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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ make install # install binary to /usr/bin (requires sudo)

## Project overview

ashell is a status bar for Wayland compositors, written in Rust with the iced GUI framework.
ashell is a desktop shell for Wayland compositors, written in Rust with the iced GUI framework.
It has dedicated backends for Hyprland and Niri and a generic Wayland fallback for other compositors.
It follows the Elm architecture (model → update → view) with a modular design separating UI modules from backend services.

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ashell"
description = "A ready to go status bar for Wayland compositors"
description = "A ready to go desktop shell for Wayland"
homepage = "https://malpenzibo.github.io/ashell/"
repository = "https://github.com/MalpenZibo/ashell"
authors = ["Simone Camito (Zibo)"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<img src="https://raw.githubusercontent.com/MalpenZibo/ashell/main/website/static/img/logo_header_dark.svg" alt="ashell" height="140"/>
</a>
</h1>
<p align="center">A ready to go status bar for Wayland compositors.</p>
<p align="center">A ready to go desktop shell for Wayland.</p>
<p align="center">
<a href="https://matrix.to/#/#ashell:matrix.org"><img alt="Matrix" src="https://img.shields.io/badge/matrix-%23ashell-blue?logo=matrix"></a>
<a href="https://github.com/MalpenZibo/ashell/blob/main/LICENSE"><img alt="GitHub License" src="https://img.shields.io/github/license/MalpenZibo/ashell"></a>
Expand Down
2 changes: 1 addition & 1 deletion docs/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["ashell contributors"]
language = "en"
src = "src"
title = "ashell Developer Guide"
description = "Developer onboarding and architecture reference for the ashell Wayland status bar"
description = "Developer onboarding and architecture reference for the ashell Wayland desktop shell"

[output.html]
default-theme = "coal"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> **Note:** The content of this developer guide has been entirely generated by AI, based on analysis of the ashell source code, GitHub issues, pull requests, and project discussions. It may contain inaccuracies or become outdated as the project evolves. Contributions to improve and maintain this documentation are welcome.

**ashell** is a ready-to-go status bar for Wayland compositors. It ships dedicated backends for [Hyprland](https://hyprland.org/) and [Niri](https://github.com/YaLTeR/niri) and falls back to a generic Wayland backend on other compositors. It is written in Rust using the [iced](https://iced.rs/) GUI framework and provides a modern, feature-rich taskbar experience for Wayland-based Linux desktops.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here we have "ready-to-go"

and then we have a few places with
"ready to go"

**ashell** is a ready-to-go desktop shell for Wayland. It ships dedicated backends for [Hyprland](https://hyprland.org/) and [Niri](https://github.com/YaLTeR/niri) and falls back to a generic Wayland backend on other compositors. It is written in Rust using the [iced](https://iced.rs/) GUI framework and provides a modern, feature-rich desktop shell experience for Wayland-based Linux desktops.

## Who This Book Is For

Expand Down
2 changes: 1 addition & 1 deletion website/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_position: 1

# 🚀 Getting Started

Ashell is a Wayland status bar written in Rust using the `iced` library. It runs
Ashell is a ready to go desktop shell for Wayland, written in Rust using the `iced` library. It runs
on any Wayland compositor. See [Compositor Support](./compositor-support.md) for
the dedicated integrations, the generic fallback, and the feature matrix.

Expand Down
2 changes: 1 addition & 1 deletion website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type * as Preset from "@docusaurus/preset-classic";

const config: Config = {
title: "Ashell",
tagline: "A ready to go status bar for Wayland compositors",
tagline: "A ready to go desktop shell for Wayland",
favicon: "img/favicon.svg",

// Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future
Expand Down