├── .github ├── FUNDING.yml └── workflows │ ├── test-dotnet.yml │ └── test-powershell.yml ├── .gitignore ├── Build ├── Build-Module.ps1 ├── Build-Package.ps1 ├── Publish-PackageGitHub.ps1 ├── Publish-PackageNuget.ps1 └── Update-Version.ps1 ├── CHANGELOG.MD ├── Docs ├── New-BGInfo.md ├── New-BGInfoLabel.md ├── New-BGInfoValue.md └── Readme.md ├── Examples ├── Output │ ├── PrzemyslawKlysAndKulkozaurr.jpg │ └── TapN-Evotec-1600x900.jpg ├── Run.BGInfo1.ps1 ├── Run.BGInfo2.ps1 ├── Run.BGInfo3.ps1 └── Samples │ ├── LogoEvotec.png │ ├── PrzemyslawKlysAndKulkozaurr.jpg │ ├── TapC-Evotec-2560x1080.jpg │ ├── TapN-Evotec-1600x900.jpg │ └── TapN-Evotec-2048x1536.jpg ├── License ├── Old ├── New-BGInfo.ps1 ├── New-BGInfoLabel.ps1 └── New-BGInfoValue.ps1 ├── PowerBGInfo.Tests.ps1 ├── PowerBGInfo.psd1 ├── PowerBGInfo.psm1 ├── README.MD ├── Sources ├── PowerBGInfo.PowerShell │ ├── CmdletNewBGInfo.cs │ ├── CmdletNewBGInfoLabel.cs │ ├── CmdletNewBGInfoValue.cs │ ├── OnImportAndRemove.cs │ └── PowerBGInfo.PowerShell.csproj ├── PowerBGInfo.Tests │ ├── BgInfoGeneratorTests.cs │ ├── Cmdlet.Tests.ps1 │ ├── PowerBGInfo.Tests.csproj │ └── SystemInfoProviderTests.cs ├── PowerBGInfo.sln └── PowerBGInfo │ ├── BgInfoConfiguration.cs │ ├── BgInfoEntry.cs │ ├── BgInfoGenerator.cs │ ├── ImageService.cs │ ├── PowerBGInfo.csproj │ ├── SystemInfoProvider.cs │ └── WallpaperService.cs └── Tests └── DummyTest.Tests.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test-dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/.github/workflows/test-dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/test-powershell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/.github/workflows/test-powershell.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/.gitignore -------------------------------------------------------------------------------- /Build/Build-Module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Build/Build-Module.ps1 -------------------------------------------------------------------------------- /Build/Build-Package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Build/Build-Package.ps1 -------------------------------------------------------------------------------- /Build/Publish-PackageGitHub.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Build/Publish-PackageGitHub.ps1 -------------------------------------------------------------------------------- /Build/Publish-PackageNuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Build/Publish-PackageNuget.ps1 -------------------------------------------------------------------------------- /Build/Update-Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Build/Update-Version.ps1 -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/CHANGELOG.MD -------------------------------------------------------------------------------- /Docs/New-BGInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Docs/New-BGInfo.md -------------------------------------------------------------------------------- /Docs/New-BGInfoLabel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Docs/New-BGInfoLabel.md -------------------------------------------------------------------------------- /Docs/New-BGInfoValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Docs/New-BGInfoValue.md -------------------------------------------------------------------------------- /Docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Docs/Readme.md -------------------------------------------------------------------------------- /Examples/Output/PrzemyslawKlysAndKulkozaurr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Examples/Output/PrzemyslawKlysAndKulkozaurr.jpg -------------------------------------------------------------------------------- /Examples/Output/TapN-Evotec-1600x900.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Examples/Output/TapN-Evotec-1600x900.jpg -------------------------------------------------------------------------------- /Examples/Run.BGInfo1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Examples/Run.BGInfo1.ps1 -------------------------------------------------------------------------------- /Examples/Run.BGInfo2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Examples/Run.BGInfo2.ps1 -------------------------------------------------------------------------------- /Examples/Run.BGInfo3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Examples/Run.BGInfo3.ps1 -------------------------------------------------------------------------------- /Examples/Samples/LogoEvotec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Examples/Samples/LogoEvotec.png -------------------------------------------------------------------------------- /Examples/Samples/PrzemyslawKlysAndKulkozaurr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Examples/Samples/PrzemyslawKlysAndKulkozaurr.jpg -------------------------------------------------------------------------------- /Examples/Samples/TapC-Evotec-2560x1080.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Examples/Samples/TapC-Evotec-2560x1080.jpg -------------------------------------------------------------------------------- /Examples/Samples/TapN-Evotec-1600x900.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Examples/Samples/TapN-Evotec-1600x900.jpg -------------------------------------------------------------------------------- /Examples/Samples/TapN-Evotec-2048x1536.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Examples/Samples/TapN-Evotec-2048x1536.jpg -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/License -------------------------------------------------------------------------------- /Old/New-BGInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Old/New-BGInfo.ps1 -------------------------------------------------------------------------------- /Old/New-BGInfoLabel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Old/New-BGInfoLabel.ps1 -------------------------------------------------------------------------------- /Old/New-BGInfoValue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Old/New-BGInfoValue.ps1 -------------------------------------------------------------------------------- /PowerBGInfo.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/PowerBGInfo.Tests.ps1 -------------------------------------------------------------------------------- /PowerBGInfo.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/PowerBGInfo.psd1 -------------------------------------------------------------------------------- /PowerBGInfo.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/PowerBGInfo.psm1 -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/README.MD -------------------------------------------------------------------------------- /Sources/PowerBGInfo.PowerShell/CmdletNewBGInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo.PowerShell/CmdletNewBGInfo.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo.PowerShell/CmdletNewBGInfoLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo.PowerShell/CmdletNewBGInfoLabel.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo.PowerShell/CmdletNewBGInfoValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo.PowerShell/CmdletNewBGInfoValue.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo.PowerShell/OnImportAndRemove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo.PowerShell/OnImportAndRemove.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo.PowerShell/PowerBGInfo.PowerShell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo.PowerShell/PowerBGInfo.PowerShell.csproj -------------------------------------------------------------------------------- /Sources/PowerBGInfo.Tests/BgInfoGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo.Tests/BgInfoGeneratorTests.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo.Tests/Cmdlet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo.Tests/Cmdlet.Tests.ps1 -------------------------------------------------------------------------------- /Sources/PowerBGInfo.Tests/PowerBGInfo.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo.Tests/PowerBGInfo.Tests.csproj -------------------------------------------------------------------------------- /Sources/PowerBGInfo.Tests/SystemInfoProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo.Tests/SystemInfoProviderTests.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo.sln -------------------------------------------------------------------------------- /Sources/PowerBGInfo/BgInfoConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo/BgInfoConfiguration.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo/BgInfoEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo/BgInfoEntry.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo/BgInfoGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo/BgInfoGenerator.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo/ImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo/ImageService.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo/PowerBGInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo/PowerBGInfo.csproj -------------------------------------------------------------------------------- /Sources/PowerBGInfo/SystemInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo/SystemInfoProvider.cs -------------------------------------------------------------------------------- /Sources/PowerBGInfo/WallpaperService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Sources/PowerBGInfo/WallpaperService.cs -------------------------------------------------------------------------------- /Tests/DummyTest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvotecIT/PowerBGInfo/HEAD/Tests/DummyTest.Tests.ps1 --------------------------------------------------------------------------------