mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-07-01 10:41:03 +02:00
style: run rustfmt
d'oh
This commit is contained in:
parent
afedf0214d
commit
862c46c7ec
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
||||||
use crate::bridge_channel::BridgeChannel;
|
use crate::bridge_channel::BridgeChannel;
|
||||||
use crate::config::{BarPosition, ModuleConfig};
|
use crate::config::{BarPosition, ModuleConfig};
|
||||||
|
use crate::dynamic_string::DynamicString;
|
||||||
use crate::modules::custom::ExecEvent;
|
use crate::modules::custom::ExecEvent;
|
||||||
use crate::modules::launcher::{ItemEvent, LauncherUpdate};
|
use crate::modules::launcher::{ItemEvent, LauncherUpdate};
|
||||||
use crate::modules::mpd::{PlayerCommand, SongUpdate};
|
use crate::modules::mpd::{PlayerCommand, SongUpdate};
|
||||||
|
@ -7,7 +8,6 @@ use crate::modules::workspaces::WorkspaceUpdate;
|
||||||
use crate::modules::{Module, ModuleInfoBuilder, ModuleLocation, ModuleUpdateEvent, WidgetContext};
|
use crate::modules::{Module, ModuleInfoBuilder, ModuleLocation, ModuleUpdateEvent, WidgetContext};
|
||||||
use crate::popup::Popup;
|
use crate::popup::Popup;
|
||||||
use crate::script::{OutputStream, Script};
|
use crate::script::{OutputStream, Script};
|
||||||
use crate::dynamic_string::DynamicString;
|
|
||||||
use crate::{await_sync, Config};
|
use crate::{await_sync, Config};
|
||||||
use chrono::{DateTime, Local};
|
use chrono::{DateTime, Local};
|
||||||
use color_eyre::Result;
|
use color_eyre::Result;
|
||||||
|
|
|
@ -2,13 +2,13 @@ mod bar;
|
||||||
mod bridge_channel;
|
mod bridge_channel;
|
||||||
mod clients;
|
mod clients;
|
||||||
mod config;
|
mod config;
|
||||||
|
mod dynamic_string;
|
||||||
mod icon;
|
mod icon;
|
||||||
mod logging;
|
mod logging;
|
||||||
mod modules;
|
mod modules;
|
||||||
mod popup;
|
mod popup;
|
||||||
mod script;
|
mod script;
|
||||||
mod style;
|
mod style;
|
||||||
mod dynamic_string;
|
|
||||||
|
|
||||||
use crate::bar::create_bar;
|
use crate::bar::create_bar;
|
||||||
use crate::config::{Config, MonitorConfig};
|
use crate::config::{Config, MonitorConfig};
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
use crate::config::CommonConfig;
|
use crate::config::CommonConfig;
|
||||||
|
use crate::dynamic_string::DynamicString;
|
||||||
use crate::modules::{Module, ModuleInfo, ModuleUpdateEvent, ModuleWidget, WidgetContext};
|
use crate::modules::{Module, ModuleInfo, ModuleUpdateEvent, ModuleWidget, WidgetContext};
|
||||||
use crate::popup::{ButtonGeometry, Popup};
|
use crate::popup::{ButtonGeometry, Popup};
|
||||||
use crate::script::Script;
|
use crate::script::Script;
|
||||||
use crate::dynamic_string::DynamicString;
|
|
||||||
use color_eyre::{Report, Result};
|
use color_eyre::{Report, Result};
|
||||||
use gtk::prelude::*;
|
use gtk::prelude::*;
|
||||||
use gtk::{Button, Label, Orientation};
|
use gtk::{Button, Label, Orientation};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue