mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-08-23 01:31:04 +02:00
When no config file is found, the bar will now automatically instead load a hard-coded default consisting of the `focused` and `clock` modules, and a `label` informing you the bar is not configured. Instructions are also printed to the log.
156 lines
3.9 KiB
Rust
156 lines
3.9 KiB
Rust
mod common;
|
||
mod r#impl;
|
||
mod truncate;
|
||
|
||
#[cfg(feature = "clipboard")]
|
||
use crate::modules::clipboard::ClipboardModule;
|
||
#[cfg(feature = "clock")]
|
||
use crate::modules::clock::ClockModule;
|
||
use crate::modules::custom::CustomModule;
|
||
use crate::modules::focused::FocusedModule;
|
||
use crate::modules::label::LabelModule;
|
||
use crate::modules::launcher::LauncherModule;
|
||
#[cfg(feature = "music")]
|
||
use crate::modules::music::MusicModule;
|
||
use crate::modules::script::ScriptModule;
|
||
#[cfg(feature = "sys_info")]
|
||
use crate::modules::sysinfo::SysInfoModule;
|
||
#[cfg(feature = "tray")]
|
||
use crate::modules::tray::TrayModule;
|
||
#[cfg(feature = "upower")]
|
||
use crate::modules::upower::UpowerModule;
|
||
#[cfg(feature = "workspaces")]
|
||
use crate::modules::workspaces::WorkspacesModule;
|
||
use cfg_if::cfg_if;
|
||
use serde::Deserialize;
|
||
use std::collections::HashMap;
|
||
|
||
pub use self::common::{CommonConfig, TransitionType};
|
||
pub use self::truncate::{EllipsizeMode, TruncateMode};
|
||
|
||
#[derive(Debug, Deserialize, Clone)]
|
||
#[serde(tag = "type", rename_all = "snake_case")]
|
||
pub enum ModuleConfig {
|
||
#[cfg(feature = "clipboard")]
|
||
Clipboard(Box<ClipboardModule>),
|
||
#[cfg(feature = "clock")]
|
||
Clock(Box<ClockModule>),
|
||
Custom(Box<CustomModule>),
|
||
Focused(Box<FocusedModule>),
|
||
Label(Box<LabelModule>),
|
||
Launcher(Box<LauncherModule>),
|
||
#[cfg(feature = "music")]
|
||
Music(Box<MusicModule>),
|
||
Script(Box<ScriptModule>),
|
||
#[cfg(feature = "sys_info")]
|
||
SysInfo(Box<SysInfoModule>),
|
||
#[cfg(feature = "tray")]
|
||
Tray(Box<TrayModule>),
|
||
#[cfg(feature = "upower")]
|
||
Upower(Box<UpowerModule>),
|
||
#[cfg(feature = "workspaces")]
|
||
Workspaces(Box<WorkspacesModule>),
|
||
}
|
||
|
||
#[derive(Debug, Clone)]
|
||
pub enum MonitorConfig {
|
||
Single(Config),
|
||
Multiple(Vec<Config>),
|
||
}
|
||
|
||
#[derive(Debug, Deserialize, Copy, Clone, PartialEq, Eq)]
|
||
#[serde(rename_all = "snake_case")]
|
||
pub enum BarPosition {
|
||
Top,
|
||
Bottom,
|
||
Left,
|
||
Right,
|
||
}
|
||
|
||
impl Default for BarPosition {
|
||
fn default() -> Self {
|
||
Self::Bottom
|
||
}
|
||
}
|
||
|
||
#[derive(Debug, Default, Deserialize, Copy, Clone, PartialEq, Eq)]
|
||
pub struct MarginConfig {
|
||
#[serde(default)]
|
||
pub bottom: i32,
|
||
#[serde(default)]
|
||
pub left: i32,
|
||
#[serde(default)]
|
||
pub right: i32,
|
||
#[serde(default)]
|
||
pub top: i32,
|
||
}
|
||
|
||
#[derive(Debug, Deserialize, Clone)]
|
||
pub struct Config {
|
||
#[serde(default)]
|
||
pub position: BarPosition,
|
||
#[serde(default = "default_true")]
|
||
pub anchor_to_edges: bool,
|
||
#[serde(default = "default_bar_height")]
|
||
pub height: i32,
|
||
#[serde(default)]
|
||
pub margin: MarginConfig,
|
||
#[serde(default = "default_popup_gap")]
|
||
pub popup_gap: i32,
|
||
|
||
/// GTK icon theme to use.
|
||
pub icon_theme: Option<String>,
|
||
|
||
pub ironvar_defaults: Option<HashMap<Box<str>, String>>,
|
||
|
||
pub start: Option<Vec<ModuleConfig>>,
|
||
pub center: Option<Vec<ModuleConfig>>,
|
||
pub end: Option<Vec<ModuleConfig>>,
|
||
|
||
pub monitors: Option<HashMap<String, MonitorConfig>>,
|
||
}
|
||
|
||
impl Default for Config {
|
||
fn default() -> Self {
|
||
cfg_if! {
|
||
if #[cfg(feature = "clock")] {
|
||
let end = Some(vec![ModuleConfig::Clock(Box::default())]);
|
||
}
|
||
else {
|
||
let end = None;
|
||
}
|
||
}
|
||
|
||
Self {
|
||
position: Default::default(),
|
||
height: default_bar_height(),
|
||
margin: Default::default(),
|
||
popup_gap: default_popup_gap(),
|
||
icon_theme: None,
|
||
ironvar_defaults: None,
|
||
start: Some(vec![ModuleConfig::Label(
|
||
LabelModule::new("ℹ️ Using default config".to_string()).into(),
|
||
)]),
|
||
center: Some(vec![ModuleConfig::Focused(Box::default())]),
|
||
end,
|
||
anchor_to_edges: default_true(),
|
||
monitors: None,
|
||
}
|
||
}
|
||
}
|
||
|
||
const fn default_bar_height() -> i32 {
|
||
42
|
||
}
|
||
|
||
const fn default_popup_gap() -> i32 {
|
||
5
|
||
}
|
||
|
||
pub const fn default_false() -> bool {
|
||
false
|
||
}
|
||
|
||
pub const fn default_true() -> bool {
|
||
true
|
||
}
|