diff --git a/diagnose.sh b/diagnose.sh
new file mode 100755
index 00000000..42e70c6f
--- /dev/null
+++ b/diagnose.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+git status > status.txt 2>&1
+echo "--- LOG ---" >> status.txt
+git log -1 >> status.txt 2>&1
+echo "--- REBASE DIR ---" >> status.txt
+ls -d .git/rebase* >> status.txt 2>&1
diff --git a/rog-control-center/Cargo.toml b/rog-control-center/Cargo.toml
index 3b0eddf9..5c1613b9 100644
--- a/rog-control-center/Cargo.toml
+++ b/rog-control-center/Cargo.toml
@@ -29,6 +29,7 @@ rog_dbus = { path = "../rog-dbus" }
rog_aura = { path = "../rog-aura" }
rog_profiles = { path = "../rog-profiles" }
rog_platform = { path = "../rog-platform" }
+rog_slash = { path = "../rog-slash" }
supergfxctl = { git = "https://gitlab.com/asus-linux/supergfxctl.git", default-features = false }
dmi_id = { path = "../dmi-id" }
@@ -39,12 +40,14 @@ env_logger.workspace = true
tokio.workspace = true
serde.workspace = true
zbus.workspace = true
+ron.workspace = true
dirs.workspace = true
notify-rust.workspace = true
concat-idents.workspace = true
futures-util.workspace = true
versions.workspace = true
+serde_json = "1.0.149"
[dependencies.slint]
git = "https://github.com/slint-ui/slint.git"
diff --git a/rog-control-center/src/main.rs b/rog-control-center/src/main.rs
index 24a905b7..5b63a3b9 100644
--- a/rog-control-center/src/main.rs
+++ b/rog-control-center/src/main.rs
@@ -11,16 +11,21 @@ use gumdrop::Options;
use log::{debug, info, warn, LevelFilter};
use rog_control_center::cli_options::CliStart;
use rog_control_center::config::Config;
+use tokio::runtime::Runtime;
+
+thread_local! {
+ pub static UI: std::cell::RefCell