-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Compile Winutil * Update README.md (#1142) * Update README.md * Update README.md Update the README.md to be more precise & clear. Fix up grammatical mistakes, allow users to figure out their issues easier. Fix crediting of IRM execution script. * Update README.md * Compile Winutil * replacing the hard-coded paths for windows dir (#1126) * Changed version of python for winget to 3.12 (#1137) * Compile Winutil * Added Programs to the Install List (#1143) * Added the checkboxes of what I want to add * Added duplicati * Added KDE Connect * Added OpenVPN Connect * Added Oracle Virtual Box * Added Paint.net * Fixed an error spotted in the KDE Connect package names * Added the checkboxes into inputXML.xaml * Added the package details to config\applications.json * Reverted changes from winutil --------- Co-authored-by: Chris Titus <contact@christitus.com> * Compile Winutil * New Section: Customize Preferences (inside tweaks section) (#1163) * convert numlock on startup checkboxs into toggle button * convert verboselogon checkbox into toggle button * gui changes : added new section, new style for toggle buttons * convert showfileextentions checkbox into toggle button * convert mouse acceleration checkboxs into togglebutton * manor changes : cleanup, adding tooltips * fix style of toggle tweaks added new style 'labelfortweaks' that fix sytle and give mouse hover effect like previous tweaks that are using checkbox style but here for toggle tweaks we are using label and to make other tweaks style 'labelfortweaks' sytle is used. it mimic the style of checkbox style --------- Co-authored-by: Chris Titus <contact@christitus.com> * Compile Winutil * add Thunderbird (#1165) * Compile Winutil * Update the screenshot in README w/ dark mode (#1173) * took a pr on main and pulling it to test (#1175) * Add Session messenger to the applications list. (#1166) * Update applications.json * Update inputXML.xaml * Compile Winutil --------- Co-authored-by: charlescgs <135472912+charlescgs@users.noreply.github.com> Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com> --------- Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com> Co-authored-by: aim <aimansadiqrahman@gmail.com> Co-authored-by: edelvarden <42596339+edelvarden@users.noreply.github.com> Co-authored-by: dass2608 <139251779+dass2608@users.noreply.github.com> Co-authored-by: Inventhrice <45127310+Inventhrice@users.noreply.github.com> Co-authored-by: Padsala Tushal <57517785+padsalatushal@users.noreply.github.com> Co-authored-by: Antun Nitraj <antnitraj@gmail.com> Co-authored-by: Meen Beese <meenbeese@tutanota.com> Co-authored-by: charlescgs <135472912+charlescgs@users.noreply.github.com>
- Loading branch information
1 parent
c310896
commit b166415
Showing
17 changed files
with
767 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
Function Invoke-WinUtilMouseAcceleration { | ||
<# | ||
.SYNOPSIS | ||
Enables/Disables Mouse Acceleration | ||
.PARAMETER DarkMoveEnabled | ||
Indicates the current Mouse Acceleration State | ||
#> | ||
Param($MouseAccelerationEnabled) | ||
Try{ | ||
if ($MouseAccelerationEnabled -eq $false){ | ||
Write-Host "Enabling Mouse Acceleration" | ||
$MouseSpeed = 1 | ||
$MouseThreshold1 = 6 | ||
$MouseThreshold2 = 10 | ||
} | ||
else { | ||
Write-Host "Disabling Mouse Acceleration" | ||
$MouseSpeed = 0 | ||
$MouseThreshold1 = 0 | ||
$MouseThreshold2 = 0 | ||
|
||
} | ||
|
||
$Path = "HKCU:\Control Panel\Mouse" | ||
Set-ItemProperty -Path $Path -Name MouseSpeed -Value $MouseSpeed | ||
Set-ItemProperty -Path $Path -Name MouseThreshold1 -Value $MouseThreshold1 | ||
Set-ItemProperty -Path $Path -Name MouseThreshold2 -Value $MouseThreshold2 | ||
} | ||
Catch [System.Security.SecurityException] { | ||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception" | ||
} | ||
Catch [System.Management.Automation.ItemNotFoundException] { | ||
Write-Warning $psitem.Exception.ErrorRecord | ||
} | ||
Catch{ | ||
Write-Warning "Unable to set $Name due to unhandled exception" | ||
Write-Warning $psitem.Exception.StackTrace | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
function Invoke-WinUtilNumLock { | ||
<# | ||
.SYNOPSIS | ||
Disables/Enables NumLock on startup | ||
.PARAMETER Enabled | ||
Indicates whether to enable or disable Numlock on startup | ||
#> | ||
Param($Enabled) | ||
Try{ | ||
if ($Enabled -eq $false){ | ||
Write-Host "Enabling Numlock on startup" | ||
$value = 2 | ||
} | ||
else { | ||
Write-Host "Disabling Numlock on startup" | ||
$value = 0 | ||
} | ||
$Path = "HKCU:\Control Panel\Keyboard" | ||
Set-ItemProperty -Path $Path -Name InitialKeyboardIndicators -Value $value | ||
} | ||
Catch [System.Security.SecurityException] { | ||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception" | ||
} | ||
Catch [System.Management.Automation.ItemNotFoundException] { | ||
Write-Warning $psitem.Exception.ErrorRecord | ||
} | ||
Catch{ | ||
Write-Warning "Unable to set $Name due to unhandled exception" | ||
Write-Warning $psitem.Exception.StackTrace | ||
} | ||
} |
Oops, something went wrong.