Added Viber for Install Requested Feature ChrisTitusTech/winutil#102 (#208)

This commit is contained in:
Padsala Tushal 2022-10-03 02:39:31 +05:30 committed by GitHub
parent bab3b67ef3
commit 81d132b6e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 0 deletions

View File

@ -44,6 +44,7 @@
<CheckBox Name="Installsignal" Content="Signal" Margin="5,0"/>
<CheckBox Name="Installskype" Content="Skype" Margin="5,0"/>
<CheckBox Name="Installslack" Content="Slack" Margin="5,0"/>
<CheckBox Name="Installviber" Content="Viber" Margin="5,0"/>
<CheckBox Name="Installteams" Content="Microsoft Teams" Margin="5,0"/>
<CheckBox Name="Installzoom" Content="Zoom Video Conference" Margin="5,0"/>

View File

@ -243,6 +243,9 @@
"Installzoom": {
"winget": "Zoom.Zoom"
},
"Installviber": {
"winget": "Viber.Viber"
},
"Installtwinkletray": {
"winget": "xanderfrangos.twinkletray"
}

View File

@ -434,6 +434,10 @@ $WPFinstall.Add_Click({
$wingetinstall.Add("Zoom.Zoom")
$WPFInstallzoom.IsChecked = $false
}
If ( $WPFInstallviber.IsChecked -eq $true ) {
$wingetinstall.Add("Viber.Viber")
$WPFInstallviber.IsChecked = $false
}
If ( $WPFInstalltwinkletray.IsChecked -eq $true ) {
$wingetinstall.Add("xanderfrangos.twinkletray")
$WPFInstalltwinkletray.IsChecked = $false