This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
285 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Hydra core specific settings | ||
Hydra cores use toml format to generate widgets that appear in the GUI at runtime. | ||
|
||
Each widget is a toml table like so: | ||
```toml | ||
[my_setting_name] | ||
name = "My important BIOS file!" | ||
description = "We need this BIOS file please provide it!" | ||
category = "BIOS files" | ||
type = "filepicker" | ||
required = true | ||
``` | ||
|
||
Hydra then uses these widgets to store core specific settings in a settings.json | ||
|
||
`my_setting_name` is for hydra to identify this setting. The actual name becomes <CoreName>_my_setting_name | ||
where <CoreName> is the current core name. | ||
|
||
`name` is the pretty name of the setting that appears in the GUI. | ||
|
||
`description` is a description that appears when you hover the widget |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.