Fork de travail pop-os/libcosmic pour contribs COSMIC
Find a file
2023-09-14 01:38:56 +02:00
.github/workflows fix CI 2023-06-15 20:38:16 +02:00
.vscode feat!: implement Application API 2023-08-02 11:54:07 +02:00
cosmic-config refactor: use channel subscription for config subscriptions 2023-08-14 12:31:16 -04:00
cosmic-config-derive Cosmic advanced text (#103) 2023-05-30 12:03:15 -04:00
cosmic-theme fix: text input layout & cargo fmt 2023-08-24 15:44:29 -04:00
examples fix(app): draggable windows on X11 systems using winit 2023-08-28 18:11:19 +02:00
iced@2ead0da06f update iced 2023-08-21 15:47:01 -04:00
res improv: use current design for nav bar toggle button 2023-01-10 20:49:49 +01:00
src feat(widget): add typography functions to text module 2023-09-14 01:38:56 +02:00
.gitignore Implemented Expander 2022-10-13 11:42:13 +02:00
.gitmodules feat: autosized surface support & update freedesktop-icons & change iced branch to master 2022-12-27 17:27:04 +01:00
Cargo.toml update iced 2023-08-21 15:47:01 -04:00
config.toml refactor launcher removing templates 2021-12-31 14:58:26 -05:00
justfile feat(dialog): XDG portal integrations for open and save dialogs 2023-08-16 16:59:15 +02:00
LICENSE Initial commit 2021-11-12 20:22:30 -07:00
README.md chore(readme): improve descriptions and examples 2023-08-16 16:59:15 +02: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

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"]

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