Skip to content

Commit 633c551

Browse files
xscriptorxscriptor
andauthored
upload/plugins (#1)
* upload music theme display timezone userinfo weather plugins * fix weather plugin * upload theme selector plugin * add templates --------- Co-authored-by: xscriptor <“preciado.oscar.osorio@gmail.com”>
1 parent f68a861 commit 633c551

27 files changed

Lines changed: 2258 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Bug Report
2+
description: Report a plugin issue
3+
labels: [bug]
4+
body:
5+
- type: input
6+
id: plugin
7+
attributes:
8+
label: Plugin name
9+
validations:
10+
required: true
11+
- type: input
12+
id: version
13+
attributes:
14+
label: xfetch version
15+
validations:
16+
required: true
17+
- type: dropdown
18+
id: os
19+
attributes:
20+
label: OS
21+
options: [Linux, macOS, Windows]
22+
- type: textarea
23+
id: description
24+
attributes:
25+
label: What happened?
26+
validations:
27+
required: true
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Feature Request
2+
description: Suggest an improvement for an existing plugin
3+
labels: [enhancement]
4+
body:
5+
- type: input
6+
id: plugin
7+
attributes:
8+
label: Plugin name
9+
validations:
10+
required: true
11+
- type: textarea
12+
id: proposal
13+
attributes:
14+
label: What would you like to add or change?
15+
validations:
16+
required: true
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: New Plugin Suggestion
2+
description: Propose a new official plugin
3+
labels: [new-plugin]
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: What should the plugin do?
9+
validations:
10+
required: true
11+
- type: textarea
12+
id: source
13+
attributes:
14+
label: Data source or API
15+
description: Where would the data come from?

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true

Cargo.lock

Lines changed: 175 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
[workspace]
22
members = [
33
"plugins/animate-logo",
4+
"plugins/display-resolution",
45
"plugins/docker",
56
"plugins/github-stats",
7+
"plugins/music-player",
8+
"plugins/theme-detection",
9+
"plugins/theme-manager",
10+
"plugins/timezone",
11+
"plugins/user-info",
12+
"plugins/weather",
613
]
714
resolver = "2"
815

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "xfetch-plugin-display-resolution"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[dependencies]
7+
serde = { version = "1", features = ["derive"] }
8+
serde_json = "1"
9+
xfetch-plugin-api = { workspace = true }

0 commit comments

Comments
 (0)