mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-01-22 09:23:19 +01:00
63 lines
1.6 KiB
Plaintext
63 lines
1.6 KiB
Plaintext
import { AboutSlint, VerticalBox, HorizontalBox } from "std-widgets.slint";
|
|
|
|
export component PageAbout inherits VerticalLayout {
|
|
padding: 10px;
|
|
spacing: 10px;
|
|
Text {
|
|
vertical-alignment: TextVerticalAlignment.center;
|
|
horizontal-alignment: TextHorizontalAlignment.center;
|
|
text: "A UI for asusctl made with slint";
|
|
font-size: 22px;
|
|
}
|
|
|
|
HorizontalBox {
|
|
alignment: LayoutAlignment.center;
|
|
VerticalBox {
|
|
alignment: LayoutAlignment.center;
|
|
|
|
Text {
|
|
wrap: TextWrap.word-wrap;
|
|
text: "You need to use kernel version 6.19 to use this software";
|
|
}
|
|
|
|
Text {
|
|
vertical-alignment: TextVerticalAlignment.center;
|
|
horizontal-alignment: TextHorizontalAlignment.center;
|
|
text: "Todo:";
|
|
font-size: 22px;
|
|
}
|
|
|
|
Text {
|
|
text: "- [ ] Theme the widgets";
|
|
}
|
|
|
|
Text {
|
|
text: "- [ ] Add a cpu/gpu temp/fan speed info bar";
|
|
}
|
|
|
|
Text {
|
|
text: "- [ ] Include fan speeds, temps in a bottom bar";
|
|
}
|
|
|
|
Text {
|
|
text: "- [ ] Slash control";
|
|
}
|
|
|
|
Text {
|
|
text: "- [ ] Screenpad controls";
|
|
}
|
|
|
|
Text {
|
|
text: "- [ ] ROG Ally specific settings";
|
|
}
|
|
}
|
|
}
|
|
|
|
Text {
|
|
vertical-alignment: TextVerticalAlignment.center;
|
|
horizontal-alignment: TextHorizontalAlignment.center;
|
|
text: "Work in progress";
|
|
font-size: 22px;
|
|
}
|
|
}
|