mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2025-11-17 02:56:17 +00:00
Fix wording
This commit is contained in:
@@ -1202,27 +1202,27 @@ function DisplayCustomModeOptions {
|
|||||||
# Select correct taskbar goup option based on user input
|
# Select correct taskbar goup option based on user input
|
||||||
switch ($TbCombineTaskbar) {
|
switch ($TbCombineTaskbar) {
|
||||||
'1' {
|
'1' {
|
||||||
AddParameter 'CombineTaskbarAlways' 'Always combine taskbar buttons and hide labels'
|
AddParameter 'CombineTaskbarAlways' 'Always combine taskbar buttons and hide labels for the main display'
|
||||||
AddParameter 'CombineMMTaskbarAlways' 'Always combine taskbar buttons and hide labels in multi-monitor mode'
|
AddParameter 'CombineMMTaskbarAlways' 'Always combine taskbar buttons and hide labels for secondary displays'
|
||||||
}
|
}
|
||||||
'2' {
|
'2' {
|
||||||
AddParameter 'CombineTaskbarWhenFull' 'Combine taskbar buttons and hide labels when taskbar is full'
|
AddParameter 'CombineTaskbarWhenFull' 'Combine taskbar buttons and hide labels when taskbar is full for the main display'
|
||||||
AddParameter 'CombineMMTaskbarWhenFull' 'Combine taskbar buttons and hide labels when taskbar is full in multi-monitor mode'
|
AddParameter 'CombineMMTaskbarWhenFull' 'Combine taskbar buttons and hide labels when taskbar is full for secondary displays'
|
||||||
}
|
}
|
||||||
'3' {
|
'3' {
|
||||||
AddParameter 'CombineTaskbarNever' 'Never combine taskbar buttons and show labels'
|
AddParameter 'CombineTaskbarNever' 'Never combine taskbar buttons and show labels for the main display'
|
||||||
AddParameter 'CombineMMTaskbarNever' 'Never combine taskbar buttons and show labels in multi-monitor mode'
|
AddParameter 'CombineMMTaskbarNever' 'Never combine taskbar buttons and show labels for secondary displays'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Show options for show icon on taskbar in multi-monitor mode, only continue on valid input
|
# Show options for changing on what taskbar(s) app icons are shown, only continue on valid input
|
||||||
Do {
|
Do {
|
||||||
Write-Output ""
|
Write-Output ""
|
||||||
Write-Host " Options:" -ForegroundColor Yellow
|
Write-Host " Options:" -ForegroundColor Yellow
|
||||||
Write-Host " (n) No change" -ForegroundColor Yellow
|
Write-Host " (n) No change" -ForegroundColor Yellow
|
||||||
Write-Host " (1) Show apps icons on all taskbars" -ForegroundColor Yellow
|
Write-Host " (1) Show app icons on all taskbars" -ForegroundColor Yellow
|
||||||
Write-Host " (2) Show apps icons on main taskbar and on taskbar where the windows is open" -ForegroundColor Yellow
|
Write-Host " (2) Show app icons on main taskbar and on taskbar where the windows is open" -ForegroundColor Yellow
|
||||||
Write-Host " (3) Show apps icons only on taskbar where the window is open" -ForegroundColor Yellow
|
Write-Host " (3) Show app icons only on taskbar where the window is open" -ForegroundColor Yellow
|
||||||
$TbCombineTaskbar = Read-Host " Change how to show app icons on the taskbar when using multiple monitors? (n/1/2/3)"
|
$TbCombineTaskbar = Read-Host " Change how to show app icons on the taskbar when using multiple monitors? (n/1/2/3)"
|
||||||
}
|
}
|
||||||
while ($TbCombineTaskbar -ne 'n' -and $TbCombineTaskbar -ne '0' -and $TbCombineTaskbar -ne '1' -and $TbCombineTaskbar -ne '2' -and $TbCombineTaskbar -ne '3')
|
while ($TbCombineTaskbar -ne 'n' -and $TbCombineTaskbar -ne '0' -and $TbCombineTaskbar -ne '1' -and $TbCombineTaskbar -ne '2' -and $TbCombineTaskbar -ne '3')
|
||||||
@@ -1230,13 +1230,13 @@ function DisplayCustomModeOptions {
|
|||||||
# Select correct taskbar goup option based on user input
|
# Select correct taskbar goup option based on user input
|
||||||
switch ($TbCombineTaskbar) {
|
switch ($TbCombineTaskbar) {
|
||||||
'1' {
|
'1' {
|
||||||
AddParameter 'MMTaskbarModeAll' 'Show apps icons on all taskbars'
|
AddParameter 'MMTaskbarModeAll' 'Show app icons on all taskbars'
|
||||||
}
|
}
|
||||||
'2' {
|
'2' {
|
||||||
AddParameter 'MMTaskbarModeMainActive' 'Show apps icons on main taskbar and on taskbar where the windows is open'
|
AddParameter 'MMTaskbarModeMainActive' 'Show app icons on main taskbar and on taskbar where the windows is open'
|
||||||
}
|
}
|
||||||
'3' {
|
'3' {
|
||||||
AddParameter 'MMTaskbarModeActive' 'Show apps icons only on taskbar where the window is open'
|
AddParameter 'MMTaskbarModeActive' 'Show app icons only on taskbar where the window is open'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1923,39 +1923,39 @@ switch ($script:Params.Keys) {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'CombineTaskbarAlways' {
|
'CombineTaskbarAlways' {
|
||||||
RegImport "> Setting the taskbar to always combine buttons and hide labels..." "Combine_Taskbar_Always.reg"
|
RegImport "> Setting the taskbar on the main display to always combine buttons and hide labels..." "Combine_Taskbar_Always.reg"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'CombineTaskbarWhenFull' {
|
'CombineTaskbarWhenFull' {
|
||||||
RegImport "> Setting the taskbar to only combine buttons and hide labels when the taskbar is full..." "Combine_Taskbar_When_Full.reg"
|
RegImport "> Setting the taskbar on the main display to only combine buttons and hide labels when the taskbar is full..." "Combine_Taskbar_When_Full.reg"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'CombineTaskbarNever' {
|
'CombineTaskbarNever' {
|
||||||
RegImport "> Setting the taskbar to never combine buttons or hide labels..." "Combine_Taskbar_Never.reg"
|
RegImport "> Setting the taskbar on the main display to never combine buttons or hide labels..." "Combine_Taskbar_Never.reg"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'CombineMMTaskbarAlways' {
|
'CombineMMTaskbarAlways' {
|
||||||
RegImport "> Setting the taskbar to always combine buttons and hide labels in multi-monitor mode..." "Combine_MMTaskbar_Always.reg"
|
RegImport "> Setting the taskbar on secondary displays to always combine buttons and hide labels..." "Combine_MMTaskbar_Always.reg"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'CombineMMTaskbarWhenFull' {
|
'CombineMMTaskbarWhenFull' {
|
||||||
RegImport "> Setting the taskbar to only combine buttons and hide labels when the taskbar is ful in multi-monitor mode..." "Combine_MMTaskbar_When_Full.reg"
|
RegImport "> Setting the taskbar on secondary displays to only combine buttons and hide labels when the taskbar is full..." "Combine_MMTaskbar_When_Full.reg"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'CombineMMTaskbarNever' {
|
'CombineMMTaskbarNever' {
|
||||||
RegImport "> Setting the taskbar to never combine buttons or hide labels in multi-monitor mode..." "Combine_MMTaskbar_Never.reg"
|
RegImport "> Setting the taskbar on secondary displays to never combine buttons or hide labels..." "Combine_MMTaskbar_Never.reg"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'MMTaskbarModeAll' {
|
'MMTaskbarModeAll' {
|
||||||
RegImport "> Setting the taskbar to only show icons on main taskbar in multi-monitor mode..." "MMTaskbarMode_All.reg"
|
RegImport "> Setting the taskbar to only show app icons on main taskbar..." "MMTaskbarMode_All.reg"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'MMTaskbarModeMainActive' {
|
'MMTaskbarModeMainActive' {
|
||||||
RegImport "> Setting the taskbar to show icons on all taskbars in multi-monitor mode..." "MMTaskbarMode_Main_Active.reg"
|
RegImport "> Setting the taskbar to show app icons on all taskbars..." "MMTaskbarMode_Main_Active.reg"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'MMTaskbarModeActive' {
|
'MMTaskbarModeActive' {
|
||||||
RegImport "> Setting the taskbar to only show apps on the taskbar where the window is open in multi-monitor mode..." "MMTaskbarMode_Active.reg"
|
RegImport "> Setting the taskbar to only show app icons on the taskbar where the window is open..." "MMTaskbarMode_Active.reg"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
'HideSearchTb' {
|
'HideSearchTb' {
|
||||||
|
|||||||
Reference in New Issue
Block a user