summaryrefslogtreecommitdiffstats
path: root/src/configs/battery.rs
blob: 4349a25cee223d63c6f9fd3630fcb313a65675b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use crate::config::{ModuleConfig, RootModuleConfig};

use starship_module_config_derive::ModuleConfig;

#[derive(Clone, ModuleConfig)]
pub struct BatteryConfig<'a> {
    pub full_symbol: &'a str,
    pub charging_symbol: &'a str,
    pub discharging_symbol: &'a str,
    pub unknown_symbol: &'a str,
    pub empty_symbol: &'a str,
    pub display: Vec<BatteryDisplayConfig<'a>>,
    pub disabled: bool,
    pub format: &'a str,
}

impl<'a> RootModuleConfig<'a> for BatteryConfig<'a> {
    fn new() -> Self {
        BatteryConfig {
            full_symbol: "",
            charging_symbol: "",
            discharging_symbol: "",
            unknown_symbol: "",
            empty_symbol: "",
            format: "[$symbol$percentage]($style) ",
            display: vec![BatteryDisplayConfig {
                threshold: 10,
                style: "red bold",
            }],
            disabled: false,
        }
    }
}

#[derive(Clone, ModuleConfig)]
pub struct BatteryDisplayConfig<'a> {
    pub threshold: i64,
    pub style: &'a str,
}