summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2019-02-15 22:20:04 +0100
committerCanop <cano.petrole@gmail.com>2019-02-15 22:20:04 +0100
commit244a8f5603c0582393189c9d7873b31fa6e0ddd3 (patch)
tree54391174fe07c7a4a564ec016add2fde397f588c /src/main.rs
parent9dc496d470d276767f509c3e56787660a3ec12a2 (diff)
skinning possible for simple colors, for status
for foreground and background
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 6a1263d..75ab4e3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -27,6 +27,8 @@ mod regex_patterns;
mod screen_text;
mod screens;
mod shell_func;
+mod skin;
+mod skin_conf;
mod spinner;
mod status;
mod task_sync;
@@ -90,7 +92,8 @@ fn run() -> Result<Option<Launchable>, ProgramError> {
launch_args,
verb_store,
};
- App::new().run(&context)
+ let skin = skin::Skin::create(config.skin_entries);
+ App::new().run(&context, skin)
}
fn main() {