├── .gitattributes ├── .gitignore ├── BgInfo.sln ├── BgInfo ├── App.config ├── App.xaml ├── App.xaml.cs ├── BgInfo.csproj ├── BgInfoManager.cs ├── GlobalSuppressions.cs ├── Icons │ └── bginfo.ico ├── Models │ └── Settings.cs ├── NativeMethods.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ViewModels │ ├── BgViewModel.cs │ ├── DriveInfoViewModel.cs │ ├── SettingsViewModel.cs │ └── TaskbarIconViewModel.cs ├── Views │ ├── BgView.xaml │ ├── BgView.xaml.cs │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── SettingsView.xaml │ └── SettingsView.xaml.cs ├── WindowUtils.cs ├── app.manifest ├── app1.manifest └── packages.config └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/.gitignore -------------------------------------------------------------------------------- /BgInfo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo.sln -------------------------------------------------------------------------------- /BgInfo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/App.config -------------------------------------------------------------------------------- /BgInfo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/App.xaml -------------------------------------------------------------------------------- /BgInfo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/App.xaml.cs -------------------------------------------------------------------------------- /BgInfo/BgInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/BgInfo.csproj -------------------------------------------------------------------------------- /BgInfo/BgInfoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/BgInfoManager.cs -------------------------------------------------------------------------------- /BgInfo/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/GlobalSuppressions.cs -------------------------------------------------------------------------------- /BgInfo/Icons/bginfo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Icons/bginfo.ico -------------------------------------------------------------------------------- /BgInfo/Models/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Models/Settings.cs -------------------------------------------------------------------------------- /BgInfo/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/NativeMethods.cs -------------------------------------------------------------------------------- /BgInfo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BgInfo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /BgInfo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Properties/Resources.resx -------------------------------------------------------------------------------- /BgInfo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /BgInfo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Properties/Settings.settings -------------------------------------------------------------------------------- /BgInfo/ViewModels/BgViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/ViewModels/BgViewModel.cs -------------------------------------------------------------------------------- /BgInfo/ViewModels/DriveInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/ViewModels/DriveInfoViewModel.cs -------------------------------------------------------------------------------- /BgInfo/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /BgInfo/ViewModels/TaskbarIconViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/ViewModels/TaskbarIconViewModel.cs -------------------------------------------------------------------------------- /BgInfo/Views/BgView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Views/BgView.xaml -------------------------------------------------------------------------------- /BgInfo/Views/BgView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Views/BgView.xaml.cs -------------------------------------------------------------------------------- /BgInfo/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Views/MainView.xaml -------------------------------------------------------------------------------- /BgInfo/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /BgInfo/Views/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Views/SettingsView.xaml -------------------------------------------------------------------------------- /BgInfo/Views/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/Views/SettingsView.xaml.cs -------------------------------------------------------------------------------- /BgInfo/WindowUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/WindowUtils.cs -------------------------------------------------------------------------------- /BgInfo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/app.manifest -------------------------------------------------------------------------------- /BgInfo/app1.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/app1.manifest -------------------------------------------------------------------------------- /BgInfo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/BgInfo/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/BgInfo/HEAD/README.md --------------------------------------------------------------------------------