Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,106

Downloads of v 1.2.8:

628

Last Update:

22 Jul 2021

Package Maintainer(s):

Software Author(s):

  • Roland Kaufmann

Tags:

dvorak ergonomic keyboard layout programming

Programmer Dvorak Keyboard Layout

  • 1
  • 2
  • 3

1.2.8 | Updated: 22 Jul 2021

Downloads:

2,106

Downloads of v 1.2.8:

628

Maintainer(s):

Software Author(s):

  • Roland Kaufmann

Programmer Dvorak Keyboard Layout 1.2.8

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Programmer Dvorak Keyboard Layout, run the following command from the command line or from PowerShell:

>

To upgrade Programmer Dvorak Keyboard Layout, run the following command from the command line or from PowerShell:

>

To uninstall Programmer Dvorak Keyboard Layout, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade programmer-dvorak -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade programmer-dvorak -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install programmer-dvorak
  win_chocolatey:
    name: programmer-dvorak
    version: '1.2.8'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'programmer-dvorak' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.2.8'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller programmer-dvorak
{
    Name     = "programmer-dvorak"
    Version  = "1.2.8"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'programmer-dvorak':
  ensure   => '1.2.8',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator TheCakeIsNaOH on 26 Aug 2021.

Description

Dvorak is a layout that is designed to make typing on keyboards easier
by rearranging the keys so that frequent patterns in the English
language is typed with combinations of keys that make for easier
movements of your hands.

Programmer Dvorak is an extension of this layout that also maps the
top row of the keyboard with numbers and symbols, into combinations
that are common in programming languages.

Although the layout is installed in the same way as a driver, it does
not contain any executable code, only a data table.


kbddvp.inf
; <http://msdn2.microsoft.com/en-us/library/ms790223.aspx>
[version]
signature="$CHICAGO$"

[DefaultInstall.NTx86]
AddReg=Reg_Layout, Reg_Uninst
CopyFiles=Files_Dll_NTx86, Files_Inf

[DefaultInstall.NTAMD64]
AddReg=Reg_Layout, Reg_Uninst
CopyFiles=Files_Dll_NTAMD64, Files_Wow_NTAMD64, Files_Inf

[DefaultUninstall.NTx86]
DelFiles=Files_Dll_NTx86, Files_Inf
DelReg=Reg_Layout, Reg_Uninst

[DefaultUninstall.NTAMD64]
DelFiles=Files_Dll_NTAMD64, Files_Wow_NTAMD64, Files_Inf
DelReg=Reg_Layout, Reg_Uninst

[SourceDiskFiles]
%Base%.inf = 1

[SourceDiskFiles.x86]
%Base%32.dll = 1

[SourceDiskFiles.amd64]
%Base%ww.dll = 1
%Base%64.dll = 1

[SourceDiskNames]
1 = %Description%

[DestinationDirs]
Files_Dll_NTx86   = 11	  ; %WinDir%\System32
Files_Dll_NTAMD64 = 11	  ; %WinDir%\System32
Files_Wow_NTAMD64 = 16425 ; %WinDir%\SysWOW64
Files_Inf         = 17	  ; %WinDir%\Inf

[Files_Dll_NTx86]
%Base%.dll,%Base%32.dll,,0x00004000

[Files_Dll_NTAMD64]
%Base%.dll,%Base%64.dll,,0x00004000

[Files_Wow_NTAMD64]
%Base%.dll,%Base%ww.dll,,0x00004000

[Files_Inf]
%Base%.inf

[Reg_Layout]
HKLM,%CCS%\Keyboard Layouts\%Variant%%CodePage%
HKLM,%CCS%\Keyboard Layouts\%Variant%%CodePage%,Layout Text,,"%Description%"
HKLM,%CCS%\Keyboard Layouts\%Variant%%CodePage%,Layout File,,"%Base%.dll"
HKLM,%CCS%\Keyboard Layouts\%Variant%%CodePage%,Layout Id,,"001C"
HKLM,%CCS%\Keyboard Layout\DosKeybCodes,%Variant%%CodePage%,,"pd"

[Reg_Uninst]
HKLM,%Uninstall%\%Base%,,,
HKLM,%Uninstall%\%Base%,DisplayName,,"%Description% %Revision%"
HKLM,%Uninstall%\%Base%,Publisher,,"%Publisher%"
HKLM,%Uninstall%\%Base%,UninstallString,,"rundll32.exe setupapi,InstallHinfSection DefaultUninstall 128 %17%\%Base%.INF"
HKLM,%Uninstall%\%Base%,EstimatedSize,0x00010001,12 ; kilobytes
HKLM,%Uninstall%\%Base%,NoModify,0x00010001,1
HKLM,%Uninstall%\%Base%,NoRepair,0x00010001,1
HKLM,%Cache%\%Base%,,,
HKLM,%Cache%\%Base%,SlowInfoCache,0x00000004,       ; delete
HKLM,%Cache%\%Base%,Changed,0x00010001,1

[Strings]
Description="Programmer Dvorak"
Publisher="Roland Kaufmann"
Revision="1.2.8"
Base="kbddvp"
Variant=1936
CodePage=0409	; US
CCS="SYSTEM\CurrentControlSet\Control"
Uninstall="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
Cache="SOFTWARE\Microsoft\Windows\CurrentVersion\App Management\ARPCache"
kbddvp32.dll
md5: 36D61701418CFF8D0085B391F39A2DAF | sha1: 47C5A6572DD8BF7F3C54FD2E604F2CC6CE90FD39 | sha256: 11D3EE8D2FD9E75B134039BF1BA0054FA4CB9771C3C5BD314198D1F6871317D7 | sha512: 615014684A678CE531F00A5F8601572E7CA97D54D9FB91E7930E6321DF7EFAC70F1CFE3326B497B5A9AA5387CBBFFD3B2F1695332ABD70D706E5D0849D981FFF
kbddvp64.dll
md5: 1BDEADA91DB76712F1F6DFE5ED304F01 | sha1: E39221422B7C59BBE3AEA1D3ACBE64493B34F456 | sha256: 3B8BF3862BBB545ED175574737E351ADAAE6910E98F4389887C720800538A5E1 | sha512: E09669BBC592848ED9CF83CB33719A0B6409F69ECC23AAE1654E5D3745A88CFFDC83FA8F3416529537B0D2F520E1986B83D1B6B4C0B34542E96558B17967B230
kbddvpww.dll
md5: 497577FFFC0B42A5C773E49CED310A47 | sha1: B771B2B04A30D57C0C756BECFD59178DCF635519 | sha256: 758BCB6E931F5D189CB823ED83AB34B437A65DA23467F941387D31987F8A1C1F | sha512: 8059358940FC0200DAFD6308F0B1070E55844EC2720F77FB3ABB1A3D86751AA97EA380E8011CB7B6D6D2661774F4A5EF6C1484F917B766D4B7B73C7E0E2FAE3C
tools\chocolateyInstall.ps1
$tag = "dvp"

# assume that this function is in chocolateyInstall.ps1, which is
# located in the tools\ subdirectory of the package
$toolsDir = Split-Path -Parent $script:MyInvocation.MyCommand.Path
$pkgDir = Split-Path -Parent $toolsDir
$infPath = Join-Path $pkgDir ("kbd{0}.inf" -f $tag)

# use the 64-bit version on x86_64 machines, even if we are running
# in a 32-bit scripting host
$sysDir = if ([IntPtr]::Size -ne 8) { "Sysnative" } else { "System32" }
$runDll32 = "$env:SystemRoot\$sysDir\rundll32.exe"

# launch the installer for the driver; this must be done elevated
$params = @("setupapi.dll,InstallHinfSection", "DefaultInstall", "128", $infPath)
Start-ChocolateyProcessAsAdmin -Statements $params -ExeToRun $rundll32 -Elevated -ValidExitCodes @(0)

# remove the installation files (except uninstaller); the files
# should have been copied to the system directory by the .inf file
$dlls = @("32", "64", "ww" | % { "kbd{0}{1}.dll" -f $tag, $_ })
$dlls + ("kbd{0}.inf" -f $tag) | % {
  Remove-Item -Path (Join-Path $pkgDir $_)
}

tools\chocolateyUninstall.ps1
$tag = "dvp"

# use the 64-bit version on x86_64 machines, even if we are running
# in a 32-bit scripting host
$sysDir = if ([IntPtr]::Size -ne 8) { "Sysnative" } else { "System32" }
$runDll32 = "$env:SystemRoot\$sysDir\rundll32.exe"

# when we installed the layout, the .inf file got copied
$infPath = Join-Path (Join-Path $env:SystemRoot "inf") ("kbd{0}.inf" -f $tag)

# run the uninstaller for the keyboard driver
$params = @("setupapi.dll,InstallHinfSection", "DefaultUninstall", "128", $infPath)
Start-ChocolateyProcessAsAdmin -Statements $params -ExeToRun $rundll32 -Elevated -ValidExitCodes @(0)

tools\LICENSE.txt
Copyright (C) 1997-2021 Roland Kaufmann.
All rights reserved.
Programmer Dvorak(TM) is a trademark of Roland Kaufmann.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must contain the above copyright notice.
* Neither the name "Programmer Dvorak" nor the name "Roland Kaufmann" may be used to endorse or promote products derived from this software without specific prior written permission.
* For written permission, please contact Roland Kaufmann at the email address given at the project homepage: <https://www.kaufmann.no/roland/dvorak>. This email address may not be used for any other purpose than direct communication with the author.
* Products derived from this software may not be called "Programmer Dvorak", nor may "Programmer Dvorak" appear in their name, without prior written permission by Roland Kaufmann. This also applies to any language localization of the name.
* Derivative work should be altered sufficiently to not conflict with the original if both are installed on a computer system.

THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ROLAND KAUFMANN BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
tools\VERIFICATION.txt
This package is built as a part of the upstream build process, and the
files herein should thus be identical to those that can be downloaded
from the project homepage: <https://www.kaufmann.no/roland/dvorak>.

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Programmer Dvorak Keyboard Layout 1.2.7 1478 Friday, January 15, 2016 Approved

This package has no dependencies.

Discussion for the Programmer Dvorak Keyboard Layout Package

Ground Rules:

  • This discussion is only about Programmer Dvorak Keyboard Layout and the Programmer Dvorak Keyboard Layout package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Programmer Dvorak Keyboard Layout, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus