mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-07-01 18:42:35 -05:00
Merge branch 'main' into refactoring-code-02
This commit is contained in:
@ -2639,6 +2639,14 @@
|
||||
"link": "https://zoom.us/",
|
||||
"winget": "Zoom.Zoom"
|
||||
},
|
||||
"zoomit": {
|
||||
"category": "Utilities",
|
||||
"choco": "na",
|
||||
"content": "ZoomIt",
|
||||
"description": "A screen zoom, annotation, and recording tool for technical presentations and demos",
|
||||
"link": "https://learn.microsoft.com/en-us/sysinternals/downloads/zoomit",
|
||||
"winget": "Microsoft.Sysinternals.ZoomIt"
|
||||
},
|
||||
"zotero": {
|
||||
"category": "Document",
|
||||
"choco": "zotero",
|
||||
@ -2879,6 +2887,14 @@
|
||||
"link": "https://github.com/xM4ddy/OFGB",
|
||||
"winget": "xM4ddy.OFGB"
|
||||
},
|
||||
"PaleMoon": {
|
||||
"category": "Browsers",
|
||||
"choco": "paleMoon",
|
||||
"content": "PaleMoon",
|
||||
"description":"Pale Moon is an Open Source, Goanna-based web browser available for Microsoft Windows and Linux (with other operating systems in development), focusing on efficiency and ease of use.",
|
||||
"link": "https://www.palemoon.org/download.shtml",
|
||||
"winget": "MoonchildProductions.PaleMoon"
|
||||
},
|
||||
"Shotcut": {
|
||||
"category": "Multimedia Tools",
|
||||
"choco": "na",
|
||||
@ -2886,5 +2902,45 @@
|
||||
"description": "Shotcut is a free, open source, cross-platform video editor.",
|
||||
"link": "https://shotcut.org/",
|
||||
"winget": "Meltytech.Shotcut"
|
||||
},
|
||||
"LenovoLegionToolkit": {
|
||||
"category": "Utilities",
|
||||
"choco": "na",
|
||||
"content": "Lenovo Legion Toolkit",
|
||||
"description": "Lenovo Legion Toolkit (LLT) is a open-source utility created for Lenovo Legion (and similar) series laptops, that allows changing a couple of features that are only available in Lenovo Vantage or Legion Zone. It runs no background services, uses less memory, uses virtually no CPU, and contains no telemetry. Just like Lenovo Vantage, this application is Windows only.",
|
||||
"link": "https://github.com/BartoszCichecki/LenovoLegionToolkit",
|
||||
"winget": "BartoszCichecki.LenovoLegionToolkit"
|
||||
},
|
||||
"PulsarEdit": {
|
||||
"category": "Development",
|
||||
"choco": "pulsar",
|
||||
"content": "Pulsar",
|
||||
"description": "A Community-led Hyper-Hackable Text Editor",
|
||||
"link": "https://pulsar-edit.dev/",
|
||||
"winget": "Pulsar-Edit.Pulsar"
|
||||
},
|
||||
"Aegisub": {
|
||||
"category": "Development",
|
||||
"choco": "aegisub",
|
||||
"content": "Aegisub",
|
||||
"description": "Aegisub is a free, cross-platform open source tool for creating and modifying subtitles. Aegisub makes it quick and easy to time subtitles to audio, and features many powerful tools for styling them, including a built-in real-time video preview.",
|
||||
"link": "https://github.com/Aegisub/Aegisub",
|
||||
"winget": "Aegisub.Aegisub"
|
||||
},
|
||||
"SubtitleEdit": {
|
||||
"category": "Multimedia Tools",
|
||||
"choco": "na",
|
||||
"content": "Subtitle Edit",
|
||||
"description": "Subtitle Edit is a free and open source editor for video subtitles.",
|
||||
"link": "https://github.com/SubtitleEdit/subtitleedit",
|
||||
"winget": "Nikse.SubtitleEdit"
|
||||
},
|
||||
"Fork": {
|
||||
"category": "Development",
|
||||
"choco": "git-fork",
|
||||
"content": "Fork",
|
||||
"description": "Fork - a fast and friendly git client.",
|
||||
"link": "https://git-fork.com/",
|
||||
"winget": "Fork.Fork"
|
||||
}
|
||||
}
|
||||
|
@ -2294,19 +2294,35 @@
|
||||
"panel": "1",
|
||||
"Order": "a006_",
|
||||
"InvokeScript": [
|
||||
"
|
||||
Set-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\TaskbarDeveloperSettings\" -Name \"TaskbarEndTask\" -Type \"DWord\" -Value \"1\"
|
||||
"
|
||||
"$path = \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\TaskbarDeveloperSettings\"
|
||||
$name = \"TaskbarEndTask\"
|
||||
$value = 1
|
||||
|
||||
# Ensure the registry key exists
|
||||
if (-not (Test-Path $path)) {
|
||||
New-Item -Path $path -Force | Out-Null
|
||||
}
|
||||
|
||||
# Set the property, creating it if it doesn't exist
|
||||
New-ItemProperty -Path $path -Name $name -PropertyType DWord -Value $value -Force | Out-Null"
|
||||
],
|
||||
"UndoScript": [
|
||||
"
|
||||
Set-ItemProperty -Path \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\TaskbarDeveloperSettings\" -Name \"TaskbarEndTask\" -Type \"DWord\" -Value \"0\"
|
||||
"
|
||||
"$path = \"HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced\\TaskbarDeveloperSettings\"
|
||||
$name = \"TaskbarEndTask\"
|
||||
$value = 0
|
||||
|
||||
# Ensure the registry key exists
|
||||
if (-not (Test-Path $path)) {
|
||||
New-Item -Path $path -Force | Out-Null
|
||||
}
|
||||
|
||||
# Set the property, creating it if it doesn't exist
|
||||
New-ItemProperty -Path $path -Name $name -PropertyType DWord -Value $value -Force | Out-Null"
|
||||
]
|
||||
},
|
||||
"WPFTweaksPowershell7": {
|
||||
"Content": "Replace Default Powershell 5 to Powershell 7",
|
||||
"Description": "This will edit the config file of the Windows Terminal Replacing the Powershell 5 to Powershell 7 and install Powershell 7 if necessary",
|
||||
"Content": "Change Windows Terminal default: PowerShell 5 -> PowerShell 7",
|
||||
"Description": "This will edit the config file of the Windows Terminal replacing PowerShell 5 with PowerShell 7 and installing PS7 if necessary",
|
||||
"category": "Essential Tweaks",
|
||||
"panel": "1",
|
||||
"Order": "a009_",
|
||||
@ -3067,12 +3083,20 @@
|
||||
"Order": "a108_",
|
||||
"Type": "Toggle"
|
||||
},
|
||||
"WPFToggleHiddenFiles": {
|
||||
"Content": "Show Hidden Files",
|
||||
"Description": "If Enabled then Hidden Files will be shown.",
|
||||
"category": "Customize Preferences",
|
||||
"panel": "2",
|
||||
"Order": "a200_",
|
||||
"Type": "Toggle"
|
||||
},
|
||||
"WPFToggleShowExt": {
|
||||
"Content": "Show File Extensions",
|
||||
"Description": "If enabled then File extensions (e.g., .txt, .jpg) are visible.",
|
||||
"category": "Customize Preferences",
|
||||
"panel": "2",
|
||||
"Order": "a200_",
|
||||
"Order": "a201_",
|
||||
"Type": "Toggle"
|
||||
},
|
||||
"WPFToggleTaskbarSearch": {
|
||||
@ -3080,7 +3104,7 @@
|
||||
"Description": "If Enabled Search Button will be on the taskbar.",
|
||||
"category": "Customize Preferences",
|
||||
"panel": "2",
|
||||
"Order": "a201_",
|
||||
"Order": "a202_",
|
||||
"Type": "Toggle"
|
||||
},
|
||||
"WPFToggleTaskView": {
|
||||
@ -3088,7 +3112,7 @@
|
||||
"Description": "If Enabled then Task View Button in Taskbar will be shown.",
|
||||
"category": "Customize Preferences",
|
||||
"panel": "2",
|
||||
"Order": "a202_",
|
||||
"Order": "a203_",
|
||||
"Type": "Toggle"
|
||||
},
|
||||
"WPFToggleTaskbarWidgets": {
|
||||
@ -3096,7 +3120,15 @@
|
||||
"Description": "If Enabled then Widgets Button in Taskbar will be shown.",
|
||||
"category": "Customize Preferences",
|
||||
"panel": "2",
|
||||
"Order": "a203_",
|
||||
"Order": "a204_",
|
||||
"Type": "Toggle"
|
||||
},
|
||||
"WPFToggleTaskbarAlignment": {
|
||||
"Content": "Switch Taskbar Items between Center & Left",
|
||||
"Description": "[Windows 11] If Enabled then the Taskbar Items will be shown on the Center, otherwise the Taskbar Items will be shown on the Left.",
|
||||
"category": "Customize Preferences",
|
||||
"panel": "2",
|
||||
"Order": "a204_",
|
||||
"Type": "Toggle"
|
||||
},
|
||||
"WPFOOSUbutton": {
|
||||
|
Reference in New Issue
Block a user