-
-
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.
* Fix config tab (#1547) The JSON is poorly formatted. In my machine this resolved the issue * Compile Winutil * Add toggle "sticky keys" (#1546) Adds a toggle to enable/disable sticky keys * added miniconda, temurin, presentmon and pyenv-win (#1542) * Compile Winutil --------- Co-authored-by: Yuri Gabriel <97139700+Yuuh15@users.noreply.github.com> Co-authored-by: ChrisTitusTech <ChrisTitusTech@users.noreply.github.com> Co-authored-by: Jakub Krojec <jakub.krojec@gmail.com>
- Loading branch information
1 parent
f472057
commit 4773cd6
Showing
7 changed files
with
195 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Function Invoke-WinUtilStickyKeys { | ||
<# | ||
.SYNOPSIS | ||
Disables/Enables Sticky Keyss on startup | ||
.PARAMETER Enabled | ||
Indicates whether to enable or disable Sticky Keys on startup | ||
#> | ||
Param($Enabled) | ||
Try { | ||
if ($Enabled -eq $false){ | ||
Write-Host "Enabling Sticky Keys On startup" | ||
$value = 510 | ||
} | ||
else { | ||
Write-Host "Disabling Sticky Keys On startup" | ||
$value = 58 | ||
} | ||
$Path = "HKCU:\Control Panel\Accessibility\StickyKeys" | ||
Set-ItemProperty -Path $Path -Name Flags -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 | ||
} | ||
} |
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