mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2025-04-05 16:33:28 +03:00
67 lines
1.5 KiB
Text
67 lines
1.5 KiB
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
Adw.PreferencesPage enhanced_page {
|
|
title: "Enhancements";
|
|
|
|
Adw.PreferencesGroup {
|
|
title: "Wine";
|
|
|
|
Adw.ComboRow {
|
|
title: "HUD";
|
|
|
|
model: Gtk.StringList {
|
|
strings [
|
|
"None",
|
|
"DXVK",
|
|
"MangoHUD"
|
|
]
|
|
};
|
|
}
|
|
|
|
Adw.ComboRow {
|
|
title: "Synchronization";
|
|
subtitle: "Technology used to synchronize inner wine events";
|
|
|
|
model: Gtk.StringList {
|
|
strings [
|
|
"None",
|
|
"ESync",
|
|
"FSync",
|
|
"Futex2"
|
|
]
|
|
};
|
|
}
|
|
|
|
Adw.ComboRow {
|
|
title: "FSR";
|
|
subtitle: "AMD FSR scales game resolution while rendering the game with the lower one";
|
|
|
|
model: Gtk.StringList {
|
|
strings [
|
|
"Ultra Quality",
|
|
"Quality",
|
|
"Performance",
|
|
"Balanced"
|
|
]
|
|
};
|
|
|
|
Gtk.Switch {
|
|
valign: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup {
|
|
title: "Game";
|
|
|
|
Adw.ActionRow {
|
|
title: "Gamemode";
|
|
subtitle: "This prioritizes the game over the rest of the processes";
|
|
|
|
Gtk.Switch {
|
|
valign: center;
|
|
}
|
|
}
|
|
}
|
|
}
|