├── .gitattributes ├── .gitignore ├── App.config ├── App.xaml ├── App.xaml.cs ├── Game.cs ├── HolderImage.cs ├── IconParser.cs ├── LICENSE ├── LauncherWindow.xaml ├── LauncherWindow.xaml.cs ├── LoadingScreen.xaml ├── LoadingScreen.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── default.png ├── icon.ico └── icon.png ├── Screenshots ├── main.png ├── main_t.png └── settings.png ├── Steam Dock.csproj ├── Steam Dock.sln ├── bin └── Debug │ ├── appconfig.ini │ ├── background.jpg │ ├── default.png │ ├── dice.png │ ├── userconfig.ini │ └── userconfig.ini.default ├── io.cs ├── packages.config └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/App.config -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Game.cs -------------------------------------------------------------------------------- /HolderImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/HolderImage.cs -------------------------------------------------------------------------------- /IconParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/IconParser.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/LICENSE -------------------------------------------------------------------------------- /LauncherWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/LauncherWindow.xaml -------------------------------------------------------------------------------- /LauncherWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/LauncherWindow.xaml.cs -------------------------------------------------------------------------------- /LoadingScreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/LoadingScreen.xaml -------------------------------------------------------------------------------- /LoadingScreen.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/LoadingScreen.xaml.cs -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Resources/default.png -------------------------------------------------------------------------------- /Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Resources/icon.ico -------------------------------------------------------------------------------- /Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Resources/icon.png -------------------------------------------------------------------------------- /Screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Screenshots/main.png -------------------------------------------------------------------------------- /Screenshots/main_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Screenshots/main_t.png -------------------------------------------------------------------------------- /Screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Screenshots/settings.png -------------------------------------------------------------------------------- /Steam Dock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Steam Dock.csproj -------------------------------------------------------------------------------- /Steam Dock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/Steam Dock.sln -------------------------------------------------------------------------------- /bin/Debug/appconfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/bin/Debug/appconfig.ini -------------------------------------------------------------------------------- /bin/Debug/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/bin/Debug/background.jpg -------------------------------------------------------------------------------- /bin/Debug/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/bin/Debug/default.png -------------------------------------------------------------------------------- /bin/Debug/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/bin/Debug/dice.png -------------------------------------------------------------------------------- /bin/Debug/userconfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/bin/Debug/userconfig.ini -------------------------------------------------------------------------------- /bin/Debug/userconfig.ini.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/bin/Debug/userconfig.ini.default -------------------------------------------------------------------------------- /io.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/io.cs -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/packages.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabisonfire/SteamDock/HEAD/readme.md --------------------------------------------------------------------------------