Skip to content

Commit

Permalink
Update ron location
Browse files Browse the repository at this point in the history
  • Loading branch information
edfloreshz committed Mar 19, 2024
1 parent 8f425d7 commit f099a7b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ A collection of COSMIC applications developed by the community.
| [cosmic-todo](https://github.com/edfloreshz/cosmic-todo) | A simple to-do app for the COSMIC desktop. | <img src="https://raw.githubusercontent.com/edfloreshz/cosmic-todo/main/res/screenshots/window.png" alt="cosmic-todo" width="200"/> |
| [fan-control](https://github.com/wiiznokes/fan-control) | Control your fans with different behaviors. | <img src="https://private-user-images.githubusercontent.com/78230769/290960467-cdc30753-4186-47a1-ba49-11af3868380f.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MTA4NjcwNzYsIm5iZiI6MTcxMDg2Njc3NiwicGF0aCI6Ii83ODIzMDc2OS8yOTA5NjA0NjctY2RjMzA3NTMtNDE4Ni00N2ExLWJhNDktMTFhZjM4NjgzODBmLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNDAzMTklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjQwMzE5VDE2NDYxNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTYzNjkyZmM5ZDcwNmI2ZTJhOTUzMGEwYmQzMWY5NTZkNTM2ZWFmZDFmMjg3OTVmZjk2MzQ1NDBmYmY5NDNkNjQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JmFjdG9yX2lkPTAma2V5X2lkPTAmcmVwb19pZD0wIn0.MGVa6nEKOUaCwqaKRNExAv491DJLQ01oH3KnV4igeIk" alt="fan-control" width="200"/> |
## How to add your applet?
To add your applet to this list, please open a pull request with your applet added to the `applets.ron` file and an image of your applet in the `img` folder named after your applet.
To add your applet to this list, please open a pull request with your applet added to the `applications.ron` file.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ struct Applications {
}

fn main() -> anyhow::Result<()> {
let data = include_str!("../data/applications.ron");
let data = include_str!("../applications.ron");
let mut readme = String::new();
let applications: Applications = ron::from_str(data)?;

Expand All @@ -30,7 +30,7 @@ fn main() -> anyhow::Result<()> {
}

readme.push_str("## How to add your applet?\n");
readme.push_str("To add your applet to this list, please open a pull request with your applet added to the `applets.ron` file and an image of your applet in the `img` folder named after your applet.\n");
readme.push_str("To add your applet to this list, please open a pull request with your applet added to the `applications.ron` file.\n");

std::fs::write("README.md", readme)?;

Expand Down

0 comments on commit f099a7b

Please sign in to comment.