Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
MalpenZibo committed Jan 15, 2025
1 parent 0e7e829 commit a22b4c5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,16 @@ The configuration uses the yaml file format and is named `~/.config/ashell.yml`
```yaml
# Ashell log level filter, possible values "DEBUG" | "INFO" | "WARNING" | "ERROR". Needs reload
logLevel: "INFO" # optional, default "INFO"
# List of outputs, example values: DP-1 | HDMI-1 | eDP-1.
# the status bar will be displayed on all the outputs listed here
# Possible status bar outputs, values could be: All, Active, or Targets
# All: the status bar will be displayed on all the available outputs, example: outputs: All
# Active: the status bar will be displayed on the active output, example: outputs: Active
# Targets: the status bar will be displayed on the outputs listed here,
# example:
# outputs: !Targets
# - DP-1
# - eDP-1
# if the outputs is not available the bar will be displayed in the active output
outputs: # optional, default empty list (the bar will be displayed on the active output)
- eDP-1
- DP-1
outputs: All # optional, default all
# Bar position, possible values Top | Bottom.
position: Top # optional, default Top
# Declare which modules should be used and in which position in the status bar.
Expand Down
1 change: 0 additions & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,6 @@ impl Default for Modules {
}

#[derive(Deserialize, Clone, Default, Debug, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub enum Outputs {
#[default]
All,
Expand Down

0 comments on commit a22b4c5

Please sign in to comment.