Fork de travail pop-os/libcosmic pour contribs COSMIC
Find a file
Ian Douglas Scott 732c7aef5c Add smol implementation for spawn
Although this is used in apps that use `tokio`, if we're going to
support `smol`, this seems suboptimal to require.

This assumes the function will be called by a tokio executor if the
`tokio` feature is used. Otherwise it can be spawned from any executor.
That should be consistent with everything else.

This fails to compile without either the `tokio` or `smol` feature. This
seems reasonable, since `zbus` also fails to compile in that case.
2024-07-26 12:01:40 -07:00
.github/workflows Do not keep gh-pages history 2024-06-18 09:22:09 -06:00
.vscode fix: remove rust-analyzer.linkedProjects 2024-04-13 17:11:42 -06:00
cosmic-config cosmic-config: Update calloop 2024-06-26 16:16:31 +02:00
cosmic-config-derive fix(cosmic-config-derive): do not return error when getting config which is not set 2024-03-07 07:13:40 -07:00
cosmic-theme fix: return error if vscode config fails to parse, instead of overwriting 2024-07-17 19:48:34 +02:00
examples update iced 2024-06-20 10:42:08 -06:00
iced@fa817c704d feat(headerbar): double click to maximize 2024-07-23 11:58:55 +02:00
res improv: get window control icons from icon theme 2024-07-22 07:24:07 +02:00
src Add smol implementation for spawn 2024-07-26 12:01:40 -07:00
.gitignore chore: remove debian directory 2023-09-15 17:37:35 +02:00
.gitmodules chore(examples): migrated cosmic-design-demo 2023-09-15 20:48:25 +02:00
Cargo.toml Add smol implementation for spawn 2024-07-26 12:01:40 -07:00
config.toml refactor launcher removing templates 2021-12-31 14:58:26 -05:00
justfile chore: remove design demo example 2024-05-29 06:25:15 -06:00
LICENSE Initial commit 2021-11-12 20:22:30 -07:00
README.md Fixed broken link in README.md to point to docs. Added code to add libcosmic as dependency for lib. 2024-07-08 08:27:39 -06:00

LIBCOSMIC

A platform toolkit based on iced which provides the building blocks for developing the future COSMIC desktop environment. Applications and applets alike are equally supported targets of Libcosmic. Applets integrate directly with COSMIC's interface as shell components, which was made possible by the Layer Shell protocol of Wayland.

Building

Libcosmic is written entirely in Rust, with minimal dependence on system libraries. On Pop!_OS, the following dependencies are all that's necessary compile the cosmic library:

sudo apt install cargo cmake just libexpat1-dev libfontconfig-dev libfreetype-dev pkg-config

Some examples are included in the examples directory to to kickstart your COSMIC adventure. To run them, you need to clone the repository with the following commands:

git clone https://github.com/pop-os/libcosmic
cd libcosmic
git submodule update --init --recursive

If you have already cloned the repository, run these to sync with the latest updates:

git fetch origin
git checkout master
git reset --hard origin/master
git submodule update --init --recursive

The examples may then be run by their cargo project names, such as just run cosmic-design-demo.

To create a new COSMIC project, use cargo new {{name_of_project}} to create a new project workspace, edit the Cargo.toml contained within, and add this to begin.

[workspace.dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic"
default-features = false
features = ["wayland", "tokio"]

Alternatively, to create a new package after running cargo new {{name_of_project}}, edit the Cargo.toml within, and edit the dependencies section to look like this.

[dependencies]
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false,
                features = ["wayland", "tokio"] }

Cargo Features

Available cargo features to choose from:

  • a11y: Experimental accessibility support.
  • animated-image: Enables animated images from the image crate.
  • debug: Enables addtional debugging features.
  • smol: Uses smol as the preferred async runtime.
    • Conflicts with tokio
  • tokio: Uses tokio as the preferred async runtime.
    • If unset, the default executor defined by iced will be used.
    • Conflicts with smol
  • wayland: Wayland-compatible client windows.
    • Conflicts with winit
  • winit: Cross-platform and X11 client window support
    • Conflicts with wayland
  • wgpu: GPU accelerated rendering with WGPU.
    • By default, softbuffer is used for software rendering.
  • xdg-portal: Enables XDG portal dialog integrations.

Project Showcase

Documentation

Documentation can be found here.

Licence

Licensed under the Mozilla Public License 2.0.

Contact