Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edfloreshz/cosmic-applet-template
A template for COSMIC applets.
https://github.com/edfloreshz/cosmic-applet-template
Last synced: 12 days ago
JSON representation
A template for COSMIC applets.
- Host: GitHub
- URL: https://github.com/edfloreshz/cosmic-applet-template
- Owner: edfloreshz
- License: gpl-3.0
- Created: 2024-05-31T04:02:51.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-02T05:50:04.000Z (2 months ago)
- Last Synced: 2024-10-10T20:19:06.427Z (29 days ago)
- Language: Rust
- Size: 25.4 KB
- Stars: 22
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# COSMIC Applet Template
A template for COSMIC applets.
## Getting Started
To get started, click the "Use this template" button above. This will create a new repository in your account with the contents of this template.
Once you have created a new repository from this template, you can clone it to your local machine and start developing your COSMIC applet.
## Development
When you open the repository in your code editor, you will see a lot of comments in the code. These comments are there to help you get a basic understanding of what each part of the code does.
Once you feel comfortable with it, refer back to the [COSMIC documentation](https://pop-os.github.io/libcosmic/cosmic/) for more information on how to build COSMIC applets.
## Install
To install your COSMIC applet, you will need [just](https://github.com/casey/just), if you're on Pop!\_OS, you can install it with the following command:
```sh
sudo apt install just
```After you install it, you can run the following commands to build and install your applet:
```sh
just build-release
sudo just install
```