removed battery source from rsblocks.yml (#51)

This commit is contained in:
Mustafa Salih 2021-04-29 22:54:16 +03:00 committed by GitHub
parent 6b92cecef4
commit 501c8e64a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 5 deletions

View File

@ -42,7 +42,7 @@ memory:
disk:
delay: 120.0
enabled: true
enabled: false
icon: ''
@ -50,7 +50,6 @@ battery:
delay: 120.0
enabled: false
icon: ''
source: 'BAT0'
cpu_temperature:
@ -66,6 +65,8 @@ loadavg:
icon: ''
# bitcoin price
# bitcoin function using www.blockchain.com's API,
# you can visit that to check other bitcoins symbols!
bitcoins:
delay: 7200.0 # 2 hours
enabled: false

View File

@ -3,7 +3,6 @@ use std::default::Default;
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Battery {
pub source: String,
pub icon: String,
pub enabled: bool,
pub delay: f64,
@ -12,7 +11,6 @@ pub struct Battery {
impl Default for Battery {
fn default() -> Self {
Battery {
source: String::from("BAT0"),
icon: String::from(""),
enabled: false,
delay: 120.0,

View File

@ -75,7 +75,6 @@ pub struct Weather {
#[derive(Clone)]
pub struct Battery {
pub source: String,
pub icon: String,
pub enabled: bool,
pub delay: f64,