Add a lot of programs to install

- Sort softwares by category
main
Plínio Larrubia 3 years ago committed by Plínio Larrubia
parent 3484ad6a21
commit 2114b97e16
No known key found for this signature in database
GPG Key ID: 057B0A87CB137C69

@ -54,7 +54,7 @@ The `Script-Win10.ps1` do not make everything automatically, follow these steps.
Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force; ls -Recurse *.ps*1 | Unblock-File; .\"Win10ScriptGUI.ps1"
```
![Script GUI](./src/lib/images/script-gui.png)
![Script GUI](./src/lib/images/script-gui.gif)
_The `Apply Tweaks` button is the main one for debloating._

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

@ -106,7 +106,7 @@ function SetGuiLayout() {
$Global:NumOfPanels = 4
[int]$Global:PanelWidth = ($MaxWidth / $NumOfPanels) # 284
# To Labels
$Global:LabelWidth = $PanelWidth + ($PanelWidth * 0.1)
$Global:LabelWidth = $PanelWidth
$Global:TitleLabelHeight = 35
$Global:CaptionLabelHeight = 20
# To Buttons
@ -127,6 +127,7 @@ function SetGuiLayout() {
[int]$Global:CaptionLabelX = $PanelWidth * 0.25
[int]$Global:ButtonX = $PanelWidth * 0.01
[int]$Global:FirstButtonY = $TitleLabelY + $TitleLabelHeight + 30 # 70
$Global:TextAlign = "MiddleCenter"
# <=== COLOR PALETTE ===>
@ -153,9 +154,9 @@ function SetGuiLayout() {
# Caption Label Layout
$Global:CLWidth = $LabelWidth
$Global:CLWidth = $LabelWidth - ($LabelWidth - $ButtonWidth)
$Global:CLHeight = $CaptionLabelHeight
$Global:CLLocation = New-Object System.Drawing.Point($CaptionLabelX, ($FirstButtonY - $CLHeight - $DistanceBetweenButtons)) # First only
$Global:CLLocation = New-Object System.Drawing.Point(0, ($FirstButtonY - $CLHeight - $DistanceBetweenButtons)) # First only
$Global:CLFont = New-Object System.Drawing.Font($Fonts[62], $TitleSize4)
$Global:CLForeColor = [System.Drawing.ColorTranslator]::FromHtml("$Green")

Loading…
Cancel
Save