Skip to content

Commit

Permalink
docs(battery): update icon styling
Browse files Browse the repository at this point in the history
  • Loading branch information
amnweb committed Oct 29, 2024
1 parent 6695b01 commit 2fb2073
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/widgets/(Widget)-Battery.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ battery:
- `time_remaining_natural`: A boolean indicating whether to display the remaining time in a natural format.
- `charging_options`: A dictionary specifying options for displaying the charging state. It contains:
- `icon_format`: The format string for the charging icon. You can use placeholders like `{charging_icon}` and `{icon}`.
- `blink_charging_icon`: A boolean indicating whether the charging icon should blink.
- `status_thresholds`: A dictionary specifying the thresholds for different battery statuses. It contains:
- `critical`: The battery percentage threshold for critical status.
- `low`: The battery percentage threshold for low status.
Expand All @@ -58,8 +57,17 @@ battery:
.battery-widget .widget-container {}
.battery-widget .widget-container .label {}
.battery-widget .widget-container .label_alt {}
.battery-widget .widget-container .icon {}
.battery-widget .widget-container .label.status-low {}
.battery-widget .widget-container .label.status-medium {}
.battery-widget .widget-container .label.status-high {}
.battery-widget .widget-container .label.status-full {}
.battery-widget .widget-container .label.status-charging {}
.battery-widget .widget-container .icon.status-low {}
.battery-widget .widget-container .icon.status-medium {}
.battery-widget .widget-container .icon.status-high {}
.battery-widget .widget-container .icon.status-full {}
.battery-widget .widget-container .icon.status-charging {}
```

0 comments on commit 2fb2073

Please sign in to comment.