all: format

This commit is contained in:
Vaxry 2024-10-13 16:50:24 +01:00
parent f76529df4a
commit 1562ce6415
1 changed files with 6 additions and 2 deletions

View File

@ -204,12 +204,16 @@ ApplicationWindow {
Button { Button {
text: "Copy Hyprland System Info" text: "Copy Hyprland System Info"
onClicked: (e) => {hsi.copySystemInfo();} onClicked: (e) => {
hsi.copySystemInfo();
}
} }
Button { Button {
text: "Copy Hyprland Version" text: "Copy Hyprland Version"
onClicked: (e) => {hsi.copyVersion();} onClicked: (e) => {
hsi.copyVersion();
}
} }
} }