diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs b/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs
index 14c03957a..083af1ed0 100644
--- a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs
+++ b/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs
@@ -301,6 +301,29 @@ namespace Ryujinx.Ui.Common.Configuration
///
public bool ShowConsole { get; set; }
+ public bool WindowMaximized {get; set;}
+
+
+ ///
+ /// Width of the main window in pixels.
+ ///
+ public int WindowSizeWidth { get; set;}
+
+ ///
+ /// Height of the main window in pixels.
+ ///
+ public int WindowSizeHeight { get; set;}
+
+ ///
+ /// Horizontal position of the main window in pixels.
+ ///
+ public int WindowPositionX { get; set;}
+
+ ///
+ /// Vertical position of the main window in pixels.
+ ///
+ public int WindowPositionY { get; set;}
+
///
/// Enable or disable keyboard support (Independent from controllers binding)
///