Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/01_bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Bug Report
description: Report a plugin issue
labels: [bug]
body:
- type: input
id: plugin
attributes:
label: Plugin name
validations:
required: true
- type: input
id: version
attributes:
label: xfetch version
validations:
required: true
- type: dropdown
id: os
attributes:
label: OS
options: [Linux, macOS, Windows]
- type: textarea
id: description
attributes:
label: What happened?
validations:
required: true
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/02_feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Feature Request
description: Suggest an improvement for an existing plugin
labels: [enhancement]
body:
- type: input
id: plugin
attributes:
label: Plugin name
validations:
required: true
- type: textarea
id: proposal
attributes:
label: What would you like to add or change?
validations:
required: true
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/03_new_plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: New Plugin Suggestion
description: Propose a new official plugin
labels: [new-plugin]
body:
- type: textarea
id: description
attributes:
label: What should the plugin do?
validations:
required: true
- type: textarea
id: source
attributes:
label: Data source or API
description: Where would the data come from?
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true
175 changes: 175 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
[workspace]
members = [
"plugins/animate-logo",
"plugins/display-resolution",
"plugins/docker",
"plugins/github-stats",
"plugins/music-player",
"plugins/theme-detection",
"plugins/theme-manager",
"plugins/timezone",
"plugins/user-info",
"plugins/weather",
]
resolver = "2"

Expand Down
9 changes: 9 additions & 0 deletions plugins/display-resolution/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "xfetch-plugin-display-resolution"
version = "0.1.0"
edition = "2024"

[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
xfetch-plugin-api = { workspace = true }
Loading
Loading