Changed InACall icon and added On The Phone status to set as busy when not in a meeting

pull/1/head
Danny De Vries 4 years ago
parent 6ea8c783b3
commit 7aa6701cce

@ -33,7 +33,7 @@ If ($TeamsStatus -like "*Setting the taskbar overlay icon - Available*" -or $Tea
$Status = "Available"
Write-Host $Status
}
ElseIf ($TeamsStatus -like "*Setting the taskbar overlay icon - Busy*" -or $TeamsStatus -like "*StatusIndicatorStateService: Added Busy*") {
ElseIf ($TeamsStatus -like "*Setting the taskbar overlay icon - Busy*" -or $TeamsStatus -like "*StatusIndicatorStateService: Added Busy*" -or $TeamsStatus -like "*Setting the taskbar overlay icon - On the phone*") {
$Status = "Busy"
Write-Host $Status
}
@ -61,7 +61,7 @@ If ($TeamsActivity -like "*Resuming daemon App updates*") {
}
ElseIf ($TeamsActivity -like "*Pausing daemon App updates*") {
$Activity = "In a call"
$ActivityIcon = "mdi:phone"
$ActivityIcon = "mdi:phone-in-talk-outline"
Write-Host $Activity
}

Loading…
Cancel
Save