mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2025-04-05 00:13:28 +03:00
- updated core library; this fixes getting available space on systems with lots of disks - added patch folder selection during initial setup - fixed error panicking when you're closing folder selection dialogue during initial setup
73 lines
1.7 KiB
Text
73 lines
1.7 KiB
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
Gtk.Box page {
|
|
orientation: vertical;
|
|
hexpand: true;
|
|
|
|
Adw.PreferencesPage {
|
|
Adw.PreferencesGroup {
|
|
Gtk.Label {
|
|
label: "Set default paths";
|
|
|
|
styles ["title-1"]
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup {
|
|
vexpand: true;
|
|
valign: center;
|
|
|
|
Adw.ActionRow runners_folder {
|
|
title: "Runners saving folder";
|
|
activatable: true;
|
|
}
|
|
|
|
Adw.ActionRow dxvk_folder {
|
|
title: "DXVK saving folder";
|
|
activatable: true;
|
|
}
|
|
|
|
Adw.ActionRow prefix_folder {
|
|
title: "Wine prefix folder";
|
|
activatable: true;
|
|
}
|
|
|
|
Adw.ActionRow game_folder {
|
|
title: "Game installation folder";
|
|
activatable: true;
|
|
}
|
|
|
|
Adw.ActionRow patch_folder {
|
|
title: "Patch storing folder";
|
|
activatable: true;
|
|
}
|
|
|
|
Adw.ActionRow temp_folder {
|
|
title: "Temp data saving folder";
|
|
activatable: true;
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup {
|
|
vexpand: true;
|
|
valign: center;
|
|
|
|
Gtk.Box {
|
|
orientation: horizontal;
|
|
spacing: 8;
|
|
halign: center;
|
|
|
|
Gtk.Button continue_button {
|
|
label: "Continue";
|
|
|
|
styles ["suggested-action"]
|
|
}
|
|
|
|
Gtk.Button exit_button {
|
|
label: "Exit";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|