-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapplications.ron
78 lines (77 loc) · 3.3 KB
/
applications.ron
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#![enable(implicit_some)]
Applications(
list: [
(
name: "tasks",
description: "A simple task management application for the COSMIC desktop.",
repo: "https://github.com/edfloreshz/tasks",
image: "https://raw.githubusercontent.com/edfloreshz/tasks/main/res/screenshots/window-light.png"
),
(
name: "cosmic-ext-calculator",
description: "A calculator application for the COSMIC desktop.",
repo: "https://github.com/edfloreshz/cosmic-ext-calculator",
image: "https://raw.githubusercontent.com/edfloreshz/cosmic-ext-calculator/main/res/screenshots/window-light.png"
),
(
name: "fan-control",
description: "Control your fans with different behaviors.",
repo: "https://github.com/wiiznokes/fan-control",
image: "https://media.githubusercontent.com/media/wiiznokes/fan-control/master/res/screenshots/app.png"
),
(
name: "cosmic-webapps",
description: "Web App Manager for Cosmic desktop written with love and libcosmic. Allow you to simply create web applications from given url working inside separate window of your browser of choice.",
repo: "https://github.com/elevenhsoft/WebApps",
image: "https://raw.githubusercontent.com/elevenhsoft/WebApps/0.3.5/res/screenshots/window-dark.png"
),
(
name: "cosmic-color-picker",
description: "A color picker for COSMIC.",
repo: "https://github.com/PixelDoted/cosmic-color-picker",
image: "https://raw.githubusercontent.com/PixelDoted/cosmic-color-picker/main/preview.png"
),
(
name: "oboete",
description: "A simple flashcards application for the COSMIC™ desktop.",
repo: "https://github.com/mariinkys/oboete",
image: "https://raw.githubusercontent.com/mariinkys/oboete/main/res/screenshots/study-dark.png"
),
(
name: "starry-dex",
description: "Pokédex application for the COSMIC™ desktop.",
repo: "https://github.com/mariinkys/starrydex",
image: "https://raw.githubusercontent.com/mariinkys/starrydex/main/screenshots/pokemon.png"
),
(
name: "cosmic-dirstat",
description: "KDirStat-esque disk usage analyzer using the libcosmic toolkit.",
repo: "https://github.com/Koranir/cosmic-dirstat",
image: "https://raw.githubusercontent.com/Koranir/cosmic-dirstat/master/img/screenshot.png"
),
(
name: "forecast",
description: "A simple weather application for the COSMIC™ Desktop",
repo: "https://github.com/cosmic-utils/forecast",
image: "https://raw.githubusercontent.com/cosmic-utils/forecast/main/screenshots/window.png"
),
(
name: "cosmic-ext-2048",
description: "A 2048 game written in libcosmic and Rust",
repo: "https://github.com/Kartonrealista/cosmic-ext-2048",
image: "https://raw.githubusercontent.com/Kartonrealista/cosmic-ext-2048/main/screenshots/s1.png"
),
(
name: "cosmicding",
description: "linkding companion app for COSMIC™",
repo: "https://github.com/vkhitrin/cosmicding",
image: "https://raw.githubusercontent.com/vkhitrin/cosmicding/main/res/screenshots/bookmarks.png"
),
(
name: "bodev",
description: "Low level dev tools",
repo: "https://gitlab.com/sgued/bodev",
image: "https://bodev.sgued.fr/screenshot-ascii-light.png",
),
]
)