├── .gitattributes ├── .gitignore ├── BF99FBE07C6744A1.ico ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Neodymium.csproj ├── Neodymium.sln ├── Program.cs ├── Properties ├── Resources.Designer.cs ├── Resources.resx └── launchSettings.json ├── README.md └── WindowScreenInfo.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/.gitignore -------------------------------------------------------------------------------- /BF99FBE07C6744A1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/BF99FBE07C6744A1.ico -------------------------------------------------------------------------------- /Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/Main.Designer.cs -------------------------------------------------------------------------------- /Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/Main.cs -------------------------------------------------------------------------------- /Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/Main.resx -------------------------------------------------------------------------------- /Neodymium.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/Neodymium.csproj -------------------------------------------------------------------------------- /Neodymium.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/Neodymium.sln -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/README.md -------------------------------------------------------------------------------- /WindowScreenInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardstefun/Neodymium/HEAD/WindowScreenInfo.cs --------------------------------------------------------------------------------