├── .vs └── Theme │ └── v16 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ └── storage.ide ├── App.xaml ├── Constants.xaml ├── CustomControls ├── FilterDbItemtSelection.xaml ├── FilterEnumListSelection.xaml ├── FilterStringListSelection.xaml └── WindowBase.xaml ├── DefaultControls ├── Button.xaml ├── CheckBox.xaml ├── ComboBox.xaml ├── ProgressBar.xaml ├── ScrollViewer.xaml ├── Slider.xaml ├── TextBox.xaml └── ToolTip.xaml ├── DerivedStyles ├── ButtonBottomMenu.xaml ├── ButtonFilterNagivation.xaml ├── ButtonMainMenu.xaml ├── ButtonMessageBox.xaml ├── ButtonTopMenu.xaml ├── ButtonVirtualKeyboard.xaml ├── CheckBoxSettings.xaml ├── ListGameItem.xaml ├── MainWindowStyle.xaml └── ToggleButtonTopFilter.xaml ├── DescriptionView.html ├── Fonts ├── OpenSans-Bold.ttf ├── OpenSans-Light.ttf ├── OpenSans-Regular.ttf ├── PlayStation4.ttf ├── TitilliumWeb-Black.ttf ├── TitilliumWeb-Bold.ttf ├── TitilliumWeb-BoldItalic.ttf ├── TitilliumWeb-ExtraLight.ttf ├── TitilliumWeb-ExtraLightItalic.ttf ├── TitilliumWeb-Italic.ttf ├── TitilliumWeb-Light.ttf ├── TitilliumWeb-LightItalic.ttf ├── TitilliumWeb-Regular.ttf ├── TitilliumWeb-SemiBold.ttf ├── TitilliumWeb-SemiBoldItalic.ttf ├── XBOXONE.ttf └── icofont.ttf ├── GlobalResources.xaml ├── Images ├── ButtonPrompts │ └── Xbox │ │ └── Xbox.xaml ├── applogo.ico ├── applogo.png ├── applogo_clean.png ├── applogo_full.png ├── backgroundsquare.png ├── custom_cover_background.png ├── iconplay.png └── settings.png ├── LocSource.xaml ├── Media.xaml ├── README.md ├── Theme.csproj ├── Theme.sln ├── Views ├── Filters.xaml ├── FiltersAdditional.xaml ├── GameDetails.xaml ├── GameMenu.xaml ├── Main.xaml ├── MainMenu.xaml ├── Notifications.xaml └── SettingsMenu.xaml ├── bin └── Debug │ ├── HtmlRenderer.WPF.dll │ ├── HtmlRenderer.dll │ ├── System.Windows.Interactivity.dll │ ├── Theme.exe │ └── Theme.pdb ├── obj └── Debug │ ├── App.baml │ ├── App.g.cs │ ├── App.g.i.cs │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Theme.csproj.CopyComplete │ ├── Theme.csproj.FileListAbsolute.txt │ ├── Theme.csprojAssemblyReference.cache │ ├── Theme.exe │ ├── Theme.g.resources │ ├── Theme.pdb │ ├── Theme_Content.g.cs │ ├── Theme_Content.g.i.cs │ ├── Theme_MarkupCompile.cache │ └── Theme_MarkupCompile.i.cache └── theme.yaml /.vs/Theme/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/.vs/Theme/v16/.suo -------------------------------------------------------------------------------- /.vs/Theme/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/.vs/Theme/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /.vs/Theme/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/.vs/Theme/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Constants.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | #FF000000 10 | #FFFFFFFF 11 | #F00980 12 | #FFFFAA00 13 | #F00980 14 | #BB000000 15 | 16 | Transparent 17 | #646464 18 | 19 | #FFFFFFFF 20 | #BB000000 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 22 32 | 33 | 450 34 | 35 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 58 | 59 | 60 | 61 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /CustomControls/FilterDbItemtSelection.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 68 | -------------------------------------------------------------------------------- /CustomControls/FilterEnumListSelection.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 68 | -------------------------------------------------------------------------------- /CustomControls/FilterStringListSelection.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /CustomControls/WindowBase.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 18 | -------------------------------------------------------------------------------- /DefaultControls/Button.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 66 | 67 | 129 | 130 | 195 | 196 | 256 | -------------------------------------------------------------------------------- /DefaultControls/CheckBox.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 63 | 64 | 135 | 136 | -------------------------------------------------------------------------------- /DefaultControls/ProgressBar.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 18 | -------------------------------------------------------------------------------- /DefaultControls/ScrollViewer.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 18 | 19 | 38 | 39 | 76 | 77 | 79 | -------------------------------------------------------------------------------- /DefaultControls/Slider.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 17 | 18 | 29 | 30 | 78 | 79 | 139 | -------------------------------------------------------------------------------- /DefaultControls/TextBox.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 47 | -------------------------------------------------------------------------------- /DefaultControls/ToolTip.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 18 | -------------------------------------------------------------------------------- /DerivedStyles/ButtonBottomMenu.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 24 | -------------------------------------------------------------------------------- /DerivedStyles/ButtonFilterNagivation.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 72 | -------------------------------------------------------------------------------- /DerivedStyles/ButtonMainMenu.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 60 | -------------------------------------------------------------------------------- /DerivedStyles/ButtonMessageBox.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 57 | -------------------------------------------------------------------------------- /DerivedStyles/ButtonTopMenu.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 25 | -------------------------------------------------------------------------------- /DerivedStyles/ButtonVirtualKeyboard.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 50 | -------------------------------------------------------------------------------- /DerivedStyles/CheckBoxSettings.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 75 | -------------------------------------------------------------------------------- /DerivedStyles/ListGameItem.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 117 | -------------------------------------------------------------------------------- /DerivedStyles/MainWindowStyle.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 18 | 19 | 34 | 35 | 67 | -------------------------------------------------------------------------------- /DerivedStyles/ToggleButtonTopFilter.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 38 | -------------------------------------------------------------------------------- /DescriptionView.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 24 | Game Description 25 | 26 | 27 |
28 | {text} 29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /Fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /Fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Fonts/PlayStation4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/PlayStation4.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-Black.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-BoldItalic.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-ExtraLight.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-Italic.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-Light.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-LightItalic.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-SemiBold.ttf -------------------------------------------------------------------------------- /Fonts/TitilliumWeb-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/TitilliumWeb-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /Fonts/XBOXONE.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/XBOXONE.ttf -------------------------------------------------------------------------------- /Fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Fonts/icofont.ttf -------------------------------------------------------------------------------- /GlobalResources.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | 1920 11 | 1080 12 | 13 | True 14 | False 15 | 16 | /Fonts/XBOXONE.ttf#XBOXONE 17 | /Fonts/PlayStation4.ttf#PlayStation4 18 | 19 | /Fonts/OpenSans-Regular.ttf#OpenSans-Regular 20 | /Fonts/OpenSans-Regular.ttf#OpenSans-Regular 21 | /Fonts/OpenSans-Bold.ttf#OpenSans-Bold 22 | /Fonts/OpenSans-Light.ttf#OpenSans-Light 23 | 25 | /Fonts/OpenSans-Light.ttf#OpenSans-Light 26 | /Fonts/OpenSans-Bold.ttf#OpenSans-Bold 27 | /Fonts/icofont.ttf#icofont 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /Images/ButtonPrompts/Xbox/Xbox.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 18 | 19 | 33 | 34 | 48 | 49 | 63 | 64 | 78 | 79 | 93 | 94 | 108 | 109 | 123 | 124 | 138 | 139 | 153 | 154 | 168 | 169 | 183 | -------------------------------------------------------------------------------- /Images/applogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Images/applogo.ico -------------------------------------------------------------------------------- /Images/applogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Images/applogo.png -------------------------------------------------------------------------------- /Images/applogo_clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Images/applogo_clean.png -------------------------------------------------------------------------------- /Images/applogo_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Images/applogo_full.png -------------------------------------------------------------------------------- /Images/backgroundsquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Images/backgroundsquare.png -------------------------------------------------------------------------------- /Images/custom_cover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Images/custom_cover_background.png -------------------------------------------------------------------------------- /Images/iconplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Images/iconplay.png -------------------------------------------------------------------------------- /Images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/Images/settings.png -------------------------------------------------------------------------------- /Media.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PlayOS 2 | A fullscreen theme for Playnite inspired by the GameOS theme for Pegasus. 3 | This theme aims to be as minimal as possible. 4 | 5 | ![](https://i.imgur.com/rmarqW2.jpg) 6 | 7 | ![](https://i.imgur.com/x2bCmyq.jpg) 8 | 9 | ![](https://i.imgur.com/CGxtZnt.png) 10 | 11 | ## Installation 12 | 13 | Simply drag and drop the .pthm file into Playnite's window (while in desktop mode). 14 | 15 | ## Customization 16 | 17 | This theme uses games' icons as logos, so you will need to edit them to have them properly displayed like in the screenshots. 18 | 19 | You can configure the theme and use all the options available in the settings menu, except for the Item Spacing. This setting is fixed. 20 | 21 | Below is my recommended configuration to make your library look like the screenshots : 22 | 23 | ![](https://i.imgur.com/PYkg4zE.png) 24 | 25 | Don't hesitate to open an issue to report any bug. 26 | -------------------------------------------------------------------------------- /Theme.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {DEFEF902-318F-4568-AEDB-4F681A2D1D9A} 8 | WinExe 9 | Properties 10 | Theme 11 | Theme 12 | v4.6.1 13 | 512 14 | true 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | x86 25 | 26 | 27 | pdbonly 28 | true 29 | bin\Release\ 30 | TRACE 31 | prompt 32 | 4 33 | 34 | 35 | 36 | 37 | 38 | 39 | ..\..\..\Playnite.dll 40 | 41 | 42 | ..\..\..\Playnite.Common.dll 43 | 44 | 45 | ..\..\..\Playnite.SDK.dll 46 | 47 | 48 | ..\..\..\Playnite.FullscreenApp.exe 49 | 50 | 51 | False 52 | ..\..\..\HtmlRenderer.dll 53 | 54 | 55 | False 56 | ..\..\..\HtmlRenderer.WPF.dll 57 | 58 | 59 | 60 | 61 | 62 | 63 | ..\..\..\System.Windows.Interactivity.dll 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | MSBuild:Compile 77 | Designer 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | MSBuild:Compile 87 | Designer 88 | 89 | 90 | MSBuild:Compile 91 | Designer 92 | 93 | 94 | MSBuild:Compile 95 | Designer 96 | 97 | 98 | MSBuild:Compile 99 | Designer 100 | 101 | 102 | MSBuild:Compile 103 | Designer 104 | 105 | 106 | MSBuild:Compile 107 | Designer 108 | 109 | 110 | MSBuild:Compile 111 | Designer 112 | 113 | 114 | MSBuild:Compile 115 | Designer 116 | 117 | 118 | MSBuild:Compile 119 | Designer 120 | 121 | 122 | MSBuild:Compile 123 | Designer 124 | 125 | 126 | MSBuild:Compile 127 | Designer 128 | 129 | 130 | MSBuild:Compile 131 | Designer 132 | 133 | 134 | MSBuild:Compile 135 | Designer 136 | 137 | 138 | MSBuild:Compile 139 | Designer 140 | 141 | 142 | MSBuild:Compile 143 | Designer 144 | 145 | 146 | MSBuild:Compile 147 | Designer 148 | 149 | 150 | MSBuild:Compile 151 | Designer 152 | 153 | 154 | MSBuild:Compile 155 | Designer 156 | 157 | 158 | MSBuild:Compile 159 | Designer 160 | 161 | 162 | MSBuild:Compile 163 | Designer 164 | 165 | 166 | MSBuild:Compile 167 | Designer 168 | 169 | 170 | MSBuild:Compile 171 | Designer 172 | 173 | 174 | MSBuild:Compile 175 | Designer 176 | 177 | 178 | MSBuild:Compile 179 | Designer 180 | 181 | 182 | MSBuild:Compile 183 | Designer 184 | 185 | 186 | MSBuild:Compile 187 | Designer 188 | 189 | 190 | MSBuild:Compile 191 | Designer 192 | 193 | 194 | MSBuild:Compile 195 | Designer 196 | 197 | 198 | MSBuild:Compile 199 | Designer 200 | 201 | 202 | MSBuild:Compile 203 | Designer 204 | 205 | 206 | MSBuild:Compile 207 | Designer 208 | 209 | 210 | MSBuild:Compile 211 | Designer 212 | 213 | 214 | MSBuild:Compile 215 | Designer 216 | 217 | 218 | MSBuild:Compile 219 | Designer 220 | 221 | 222 | MSBuild:Compile 223 | Designer 224 | 225 | 226 | MSBuild:Compile 227 | Designer 228 | 229 | 230 | -------------------------------------------------------------------------------- /Theme.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.539 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBD}") = "Theme", "Theme.csproj", "{DEFEF902-318F-4568-AEDB-4F681A2D1D9A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DEFEF902-318F-4568-AEDB-4F681A2D1D9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {DEFEF902-318F-4568-AEDB-4F681A2D1D9A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {DEFEF902-318F-4568-AEDB-4F681A2D1D9A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {DEFEF902-318F-4568-AEDB-4F681A2D1D9A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {EF4E8A61-70F4-467A-BFAC-34758533A904} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Views/Filters.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 64 | -------------------------------------------------------------------------------- /Views/FiltersAdditional.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 54 | -------------------------------------------------------------------------------- /Views/GameDetails.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 39 | 40 | 41 | 42 | 43 | 45 | 47 | 49 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 66 | 67 | 69 | 70 | 71 | 72 | 75 | 76 | 77 | 81 | 82 | 84 | 85 | 86 | 87 | 91 | 93 | 95 | 96 | 123 | 124 | 125 | 126 | 127 | 128 | 131 | 132 | 133 | 134 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | -------------------------------------------------------------------------------- /Views/GameMenu.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 48 | -------------------------------------------------------------------------------- /Views/Main.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 84 | 85 | 86 | 87 | 90 | 91 | 94 | 95 | 98 | 99 | 100 | 103 | 106 | 107 | 108 | 109 | 116 | 117 | 118 | 119 | 123 | 124 | 126 | 127 | 128 | 129 | 130 | 131 | 133 | 134 | 136 | 137 | 139 | 140 | 145 | 146 | 147 | 148 | 151 | 152 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 177 | 178 | 179 | 190 | 191 | 192 | 203 | 204 | 205 | 216 | 217 | 218 | 229 | 230 | 231 | 242 | 243 | 244 | 245 | 247 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 260 | 264 | 268 | 269 | 270 | 271 | 277 | 278 | 280 | 283 | 285 | 286 | 287 | 288 | 289 | 291 | 292 | 294 | 295 | 297 | 299 | 301 | 303 | 304 | 305 | 306 | 307 | 308 | -------------------------------------------------------------------------------- /Views/MainMenu.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 86 | -------------------------------------------------------------------------------- /Views/Notifications.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 54 | -------------------------------------------------------------------------------- /Views/SettingsMenu.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 150 | -------------------------------------------------------------------------------- /bin/Debug/HtmlRenderer.WPF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/bin/Debug/HtmlRenderer.WPF.dll -------------------------------------------------------------------------------- /bin/Debug/HtmlRenderer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/bin/Debug/HtmlRenderer.dll -------------------------------------------------------------------------------- /bin/Debug/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/bin/Debug/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /bin/Debug/Theme.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/bin/Debug/Theme.exe -------------------------------------------------------------------------------- /bin/Debug/Theme.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/bin/Debug/Theme.pdb -------------------------------------------------------------------------------- /obj/Debug/App.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/obj/Debug/App.baml -------------------------------------------------------------------------------- /obj/Debug/App.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "A526F8A7702D21CE1BB2E64314D89660553B749D8FBFF392F72CA8D49348F6B4" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // Ce code a été généré par un outil. 5 | // Version du runtime :4.0.30319.42000 6 | // 7 | // Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si 8 | // le code est régénéré. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace Playnite.FullscreenApp { 35 | 36 | 37 | /// 38 | /// App 39 | /// 40 | public partial class App : System.Windows.Application { 41 | 42 | private bool _contentLoaded; 43 | 44 | /// 45 | /// InitializeComponent 46 | /// 47 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 48 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 49 | public void InitializeComponent() { 50 | if (_contentLoaded) { 51 | return; 52 | } 53 | _contentLoaded = true; 54 | System.Uri resourceLocater = new System.Uri("/Theme;component/app.xaml", System.UriKind.Relative); 55 | 56 | #line 1 "..\..\App.xaml" 57 | System.Windows.Application.LoadComponent(this, resourceLocater); 58 | 59 | #line default 60 | #line hidden 61 | } 62 | 63 | /// 64 | /// Application Entry Point. 65 | /// 66 | [System.STAThreadAttribute()] 67 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 68 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 69 | public static void Main() { 70 | Playnite.FullscreenApp.App app = new Playnite.FullscreenApp.App(); 71 | app.InitializeComponent(); 72 | app.Run(); 73 | } 74 | } 75 | } 76 | 77 | -------------------------------------------------------------------------------- /obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "A526F8A7702D21CE1BB2E64314D89660553B749D8FBFF392F72CA8D49348F6B4" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // Ce code a été généré par un outil. 5 | // Version du runtime :4.0.30319.42000 6 | // 7 | // Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si 8 | // le code est régénéré. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace Playnite.FullscreenApp { 35 | 36 | 37 | /// 38 | /// App 39 | /// 40 | public partial class App : System.Windows.Application { 41 | 42 | private bool _contentLoaded; 43 | 44 | /// 45 | /// InitializeComponent 46 | /// 47 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 48 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 49 | public void InitializeComponent() { 50 | if (_contentLoaded) { 51 | return; 52 | } 53 | _contentLoaded = true; 54 | System.Uri resourceLocater = new System.Uri("/Theme;component/app.xaml", System.UriKind.Relative); 55 | 56 | #line 1 "..\..\App.xaml" 57 | System.Windows.Application.LoadComponent(this, resourceLocater); 58 | 59 | #line default 60 | #line hidden 61 | } 62 | 63 | /// 64 | /// Application Entry Point. 65 | /// 66 | [System.STAThreadAttribute()] 67 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 68 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 69 | public static void Main() { 70 | Playnite.FullscreenApp.App app = new Playnite.FullscreenApp.App(); 71 | app.InitializeComponent(); 72 | app.Run(); 73 | } 74 | } 75 | } 76 | 77 | -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Debug/Theme.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/obj/Debug/Theme.csproj.CopyComplete -------------------------------------------------------------------------------- /obj/Debug/Theme.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\bin\Debug\Theme.exe 2 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\bin\Debug\Theme.pdb 3 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\bin\Debug\HtmlRenderer.dll 4 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\bin\Debug\HtmlRenderer.WPF.dll 5 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\bin\Debug\System.Windows.Interactivity.dll 6 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\obj\Debug\Theme.csprojAssemblyReference.cache 7 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\obj\Debug\App.baml 8 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\obj\Debug\App.g.cs 9 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\obj\Debug\Theme_Content.g.cs 10 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\obj\Debug\Theme_MarkupCompile.cache 11 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\obj\Debug\Theme.g.resources 12 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\obj\Debug\Theme.csproj.CopyComplete 13 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\obj\Debug\Theme.exe 14 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\obj\Debug\Theme.pdb 15 | -------------------------------------------------------------------------------- /obj/Debug/Theme.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/obj/Debug/Theme.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/Theme.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/obj/Debug/Theme.exe -------------------------------------------------------------------------------- /obj/Debug/Theme.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/obj/Debug/Theme.g.resources -------------------------------------------------------------------------------- /obj/Debug/Theme.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deytron/PlayOS/3ad3f48130b68f346e78c0ce07baa99c5d452a2d/obj/Debug/Theme.pdb -------------------------------------------------------------------------------- /obj/Debug/Theme_Content.g.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Ce code a été généré par un outil. 4 | // Version du runtime :4.0.30319.42000 5 | // 6 | // Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si 7 | // le code est régénéré. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("locsource.xaml")] 12 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("globalresources.xaml")] 13 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("constants.xaml")] 14 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("media.xaml")] 15 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("images/buttonprompts/xbox/xbox.xaml")] 16 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/textbox.xaml")] 17 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/slider.xaml")] 18 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/checkbox.xaml")] 19 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/combobox.xaml")] 20 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/button.xaml")] 21 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/scrollviewer.xaml")] 22 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("customcontrols/filterenumlistselection.xaml")] 23 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("customcontrols/filterstringlistselection.xaml")] 24 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("customcontrols/filterdbitemtselection.xaml")] 25 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("customcontrols/windowbase.xaml")] 26 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/checkboxsettings.xaml")] 27 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonfilternagivation.xaml")] 28 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonfilternagivation.xaml")] 29 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonvirtualkeyboard.xaml")] 30 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonmessagebox.xaml")] 31 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonmainmenu.xaml")] 32 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/listgameitem.xaml")] 33 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonbottommenu.xaml")] 34 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttontopmenu.xaml")] 35 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/togglebuttontopfilter.xaml")] 36 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/mainwindowstyle.xaml")] 37 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/notifications.xaml")] 38 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/filtersadditional.xaml")] 39 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/filters.xaml")] 40 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/gamedetails.xaml")] 41 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/settingsmenu.xaml")] 42 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/gamemenu.xaml")] 43 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/mainmenu.xaml")] 44 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/main.xaml")] 45 | 46 | 47 | -------------------------------------------------------------------------------- /obj/Debug/Theme_Content.g.i.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // Ce code a été généré par un outil. 4 | // Version du runtime :4.0.30319.42000 5 | // 6 | // Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si 7 | // le code est régénéré. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("locsource.xaml")] 12 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("globalresources.xaml")] 13 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("constants.xaml")] 14 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("media.xaml")] 15 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("images/buttonprompts/xbox/xbox.xaml")] 16 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/textbox.xaml")] 17 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/slider.xaml")] 18 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/checkbox.xaml")] 19 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/combobox.xaml")] 20 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/button.xaml")] 21 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("defaultcontrols/scrollviewer.xaml")] 22 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("customcontrols/filterenumlistselection.xaml")] 23 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("customcontrols/filterstringlistselection.xaml")] 24 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("customcontrols/filterdbitemtselection.xaml")] 25 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("customcontrols/windowbase.xaml")] 26 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/checkboxsettings.xaml")] 27 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonfilternagivation.xaml")] 28 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonfilternagivation.xaml")] 29 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonvirtualkeyboard.xaml")] 30 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonmessagebox.xaml")] 31 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonmainmenu.xaml")] 32 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/listgameitem.xaml")] 33 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttonbottommenu.xaml")] 34 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/buttontopmenu.xaml")] 35 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/togglebuttontopfilter.xaml")] 36 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("derivedstyles/mainwindowstyle.xaml")] 37 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/notifications.xaml")] 38 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/filtersadditional.xaml")] 39 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/filters.xaml")] 40 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/gamedetails.xaml")] 41 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/settingsmenu.xaml")] 42 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/gamemenu.xaml")] 43 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/mainmenu.xaml")] 44 | [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("views/main.xaml")] 45 | 46 | 47 | -------------------------------------------------------------------------------- /obj/Debug/Theme_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | Theme 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\obj\Debug\ 8 | Theme 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\Romain Ranaivoson\AppData\Local\Playnite\Themes\Fullscreen\Inshallah\App.xaml 13 | 14 | 34469170222 15 | 16 | 16212366924 17 | 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /obj/Debug/Theme_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | Theme 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | F:\Users\utilisateur\Documents\PlayOS\obj\Debug\ 8 | Theme 9 | none 10 | false 11 | DEBUG;TRACE 12 | F:\Users\utilisateur\Documents\PlayOS\App.xaml 13 | 14 | 34469170222 15 | 16 | 161020378552 17 | 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /theme.yaml: -------------------------------------------------------------------------------- 1 | ThemeApiVersion: 1.8.0 2 | Mode: Fullscreen 3 | Id: PlayOStest_c86d08e5-caac-4139-9b95-ea40d0dd2937 4 | Name: PlayOS 5 | Author: Le Malgache 6 | Version: 1.1.1 7 | --------------------------------------------------------------------------------