summaryrefslogtreecommitdiffstats
path: root/src/configs/battery.rs
blob: 578fc040bb6e1128f3cdd5be84d8c3abdebf925e (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;

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> Default for BatteryConfig<'a> {
    fn default() -> 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,
}