Minor updates

This commit is contained in:
Luke D. Jones
2024-03-14 22:10:14 +13:00
parent 5fe8416c65
commit a2b8f0f93c
4 changed files with 17 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ fn main() -> Result<()> {
.filter_level(LevelFilter::Warn) .filter_level(LevelFilter::Warn)
.parse_default_env() .parse_default_env()
.target(env_logger::Target::Stdout) .target(env_logger::Target::Stdout)
.format(|buf, record| writeln!(buf, "{}: {}", record.level(), record.args())) .format_timestamp(None)
.init(); .init();
// start tokio // start tokio

View File

@@ -27,13 +27,17 @@ export component PageAbout inherits VerticalLayout {
} }
Text { Text {
text: "- [x] Add a fullscreen mode"; text: "- [x] Add a fullscreen mode (cli arg)";
} }
Text { Text {
text: "- [x] Disable aura items depending if mode supports or not"; text: "- [x] Disable aura items depending if mode supports or not";
} }
Text {
text: "- [x] Add fan curve graph controls";
}
Text { Text {
text: "- [ ] Add a cpu/gpu temp/fan speed info bar"; text: "- [ ] Add a cpu/gpu temp/fan speed info bar";
} }

View File

@@ -351,6 +351,11 @@ export component PageAura inherits Rectangle {
padding: 30px; padding: 30px;
padding-top: 10px; padding-top: 10px;
spacing: 10px; spacing: 10px;
Text {
text: "WIP: this is not complete and won't change keyboard state";
}
Rectangle { Rectangle {
border-radius: 20px; border-radius: 20px;
background: Palette.control-background; background: Palette.control-background;
@@ -411,6 +416,11 @@ export component PageAura inherits Rectangle {
padding: 30px; padding: 30px;
padding-top: 10px; padding-top: 10px;
spacing: 10px; spacing: 10px;
Text {
text: "WIP: this is not complete and won't change keyboard state";
}
Rectangle { Rectangle {
border-radius: 20px; border-radius: 20px;
background: Palette.control-background; background: Palette.control-background;

View File

@@ -278,6 +278,7 @@ export component PageSystem inherits Rectangle {
VerticalLayout { VerticalLayout {
padding: 50px; padding: 50px;
padding-top: 5px; padding-top: 5px;
padding-bottom: 100px;
spacing: 10px; spacing: 10px;
GroupBox { GroupBox {
VerticalBox { VerticalBox {