other: update Debian extended description
This commit is contained in:
parent
abff6e4a7a
commit
dd4b19866d
|
@ -142,12 +142,11 @@ assets = [
|
||||||
],
|
],
|
||||||
["completion/_btm", "usr/share/zsh/vendor-completions/", "644"],
|
["completion/_btm", "usr/share/zsh/vendor-completions/", "644"],
|
||||||
]
|
]
|
||||||
extended-description = """\
|
extended-description = """
|
||||||
A customizable cross-platform graphical process/system monitor for the terminal. Supports Linux, macOS, and Windows.
|
|
||||||
|
|
||||||
By default, bottom will look for a config file in ~/.config/bottom/bottom.toml.
|
By default, bottom will look for a config file in ~/.config/bottom/bottom.toml. A config file can be specified \
|
||||||
If one is not specified it will fall back to defaults. If a config file does not
|
using `-C`. If a config file does not exist at the specified or default location, a default one will be created \
|
||||||
exist at the specified or default location, a blank one will be created for the user.
|
for the user there.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
[package.metadata.deb.variants.arm64]
|
[package.metadata.deb.variants.arm64]
|
||||||
|
|
|
@ -3,10 +3,13 @@
|
||||||
use std::time::Instant;
|
use std::time::Instant;
|
||||||
|
|
||||||
use futures::join;
|
use futures::join;
|
||||||
|
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
use fxhash::FxHashMap;
|
use fxhash::FxHashMap;
|
||||||
|
|
||||||
#[cfg(feature = "battery")]
|
#[cfg(feature = "battery")]
|
||||||
use starship_battery::{Battery, Manager};
|
use starship_battery::{Battery, Manager};
|
||||||
|
|
||||||
#[cfg(not(target_os = "linux"))]
|
#[cfg(not(target_os = "linux"))]
|
||||||
use sysinfo::{System, SystemExt};
|
use sysinfo::{System, SystemExt};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue