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:

942

Downloads of v 1.0.3.40:

942

Last Update:

10 Jan 2020

Package Maintainer(s):

Software Author(s):

  • OJ Bucao

Tags:

workman keyboard layout

Workman

  • 1
  • 2
  • 3

1.0.3.40 | Updated: 10 Jan 2020

Downloads:

942

Downloads of v 1.0.3.40:

942

Maintainer(s):

Software Author(s):

  • OJ Bucao

Workman 1.0.3.40

  • 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 Workman, run the following command from the command line or from PowerShell:

>

To upgrade Workman, run the following command from the command line or from PowerShell:

>

To uninstall Workman, 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 workman -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 workman -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 workman
  win_chocolatey:
    name: workman
    version: '1.0.3.40'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'workman' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.3.40'
end

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


cChocoPackageInstaller workman
{
    Name     = "workman"
    Version  = "1.0.3.40"
    Source   = "INTERNAL REPO URL"
}

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


package { 'workman':
  ensure   => '1.0.3.40',
  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 flcdrg on 12 Jan 2020.

Description

Workman keyboard layouts
========================

Workman keyboard layout originally proposed by OJ Bucao at http://www.workmanlayout.org.

When learning cold-turkey, try printing the keyboard image as a desk reference.


tools\chocolateyinstall.ps1
# Created by Joel May (https://github.com/Joel0) on 2020-01-09.

$ErrorActionPreference = 'Stop';

$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$localizedFile = 'workman-us\wm-us_i386.msi'
$localizedFile64 = 'workman-us\wm-us_amd64.msi'

# If the user is using using en-GB keyboard, install the UK variant of Workman.
if ($(Get-WinUserLanguageList)[0].LanguageTag -eq 'en-GB') {
    Write-Output "en-GB language detected. Installing UK variant of Workman. US variant is also available."
    $localizedFile = 'workman-uk\wm-uk_i386.msi'
    $localizedFile64 = 'workman-uk\wm-uk_amd64.msi'
} else {
    Write-Output "Installing default US variant of Workman. UK variant is also available."
}

$fileLocation = Join-Path $toolsDir $localizedFile
$file64Location = Join-Path $toolsDir $localizedFile64

Write-Debug "MSI log file will be at `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  fileType      = 'MSI'
  file         = $fileLocation
  file64       = $file64Location

  softwareName  = 'Workman (*)'

  silentArgs    = "/qn /norestart /l+ `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
  validExitCodes= @(0, 3010, 1641)
}

Install-ChocolateyInstallPackage @packageArgs
tools\LICENSE.txt
The Workman Layout is free to the public.
This means that there is no license, permission, or fee necessary to use or implement the layout itself (arrangement of keys), or the installation files that I released.
Use it, implement it, integrate it, create tools for it, etc. Have a go at it. You don’t need my permission to do so.

However, if you do use or implement the Workman Layout (i.e. arrangement of the keys) in some way or fashion, attribution to OJ Bucao as the creator is requested and a link back to this blog. This means that if you have an Workman Layout implementation/installation file that you created for some platform or OS, please put somewhere in the file something like the following:

The Workman Keyboard Layout created by OJ Bucao.
www.workmanlayout.com

Also if you use content from my blog or articles or quote me directly, please use proper citation .

Having said this, I am also retaining the rights to the name Workman.
As the author of the Workman Keyboard Layout, I am retaining the right to name what is officially to be called Workman.
This means that if you have an idea for a cool new keyboard layout, or decide to modify Workman into something else (i.e. not using the Workman Layout alphabetic arrangement), please name your layout differently unless you have my permission to do so.

You may however make variations of the Workman Layout that does not modify or change the alphabetic arrangement of the original and you may call it as some variation of the Workman Layout (e.g. Workman Layout wide mod, etc.)

The Workman Layout is provided with no warranty or guarantee of any kind.
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
The offical Workman binary files are provided on the GitHub repository:
https://github.com/workman-layout/Workman
The checksums may be validated by downloading the files from there.
tools\workman-uk\amd64\wm-uk.dll
md5: A01CCB170E507190BA93006EA555D155 | sha1: 20525D19FB00911B2EF80A6D46401E44227067A9 | sha256: C589E83F7FD6D002834787D81DFAD354303A1204019713CBA0CF937604D246DA | sha512: B4D465E4E82DBF9E63ECD08332CD1901E6B72929FDCAE7D248011AE4BECADE9964675D1C72E1985AE95473E83CA7BE23A60C6FCCCEF31F089A040FF3140A6CAB
tools\workman-uk\i386\wm-uk.dll
md5: 6BF26A884664789FE21BAFD8BAE62317 | sha1: BC295B64A6C97AA2757FF40900C43EEE4B332CD1 | sha256: EBF1FB04C2E91F6F1C3DCB2B021666CFAF8D852D5EC7734C67D88814C13ABC6F | sha512: A73C8F04C1A3E56A2460CA87CBD31A9E69098AADF9466EB852B7CFD62F0D6B5EFB6533E7F51759D95E98BC32F7FBB28E2C8B2B323CFF7E3C68451147ECA56E89
tools\workman-uk\wm-uk_amd64.msi
md5: B3934AB14D6063D26B279485F38AF4FD | sha1: 8F29E0FB47158EC0534B435BEBA796DDCFBB3CDF | sha256: A4E213EFF22A181A6D666F918359EC4D5599EE93489888386784621C3CCEB444 | sha512: 0B2339931B4F932A31CACC9660B1EB0CFEF0A17D7A68D3248207146742EBEA8E3681C0C64023F9656EF3932E39EAEE01BDA58C1FD7CB2814A5ED05F06FFE4530
tools\workman-uk\wm-uk_i386.msi
md5: 20FB1918A1740232C8256D75AA5E67CD | sha1: BA7985FB5B37269D2E87D9CEBC5601FC7AC805B3 | sha256: 197B853A1E9E5CA69975C978FFE547FB09DE77B227FA60BA60EBD407B5A65C19 | sha512: 3EE61E2B4BAAD51C7A64DDEA7494C757968AD4CDCE9761FD8B70F15713320753EAA902A393A490BD42D441351C71847251F908915C599AC3014D1EC5FB7217E2
tools\workman-uk\wow64\wm-uk.dll
md5: 01D7F3ABD41B69F743EAE6B636051869 | sha1: 813951A7077ACFC21D9CCF50519C69A46555A238 | sha256: 2C00F9F435E5C68171C1BEB70046D58BC730F56830BE3A6FFFA3AAA1F150257B | sha512: C7D9A84CE70F145B90EA5BE1F15CE486DC186EDB868F00E677EB35508E87213E17547CFA4383405464DC1CB23744CA9D4580831FE66A40844452AF39EBC50F2B
tools\workman-us\amd64\wm-us.dll
md5: D715522D6C4FB509307655669CB53595 | sha1: 75CD1285B7040CE272E7D042225DDD7A2ACD0EBE | sha256: 93497EC77398F2743E7E1FFF007552CA6FCFC5BBA40D0143C144607629A85723 | sha512: 4C943E99985C023969B876014E4942927E24740BD56AC1E3F2E07E1FB0B58CE5D78C4C3CF912C29DD60A169D48ED15E6F351449A255C2E7FBFEC84228B20C35B
tools\workman-us\i386\wm-us.dll
md5: 11B9E957A206112042CA47B6FEBBC15B | sha1: 7970F1A61CC4A4977EE24A1944533E2CF7A1648B | sha256: 10CC17429501EDC52B9F0AA013A61A6FEABF84BA081FFFE2D29F3A0D4CC7D270 | sha512: 8807D0322C9DA3A649EBAD0C4B6E24A3019D569B7D2272654C753BE94CB07D351DAB5FAC2581025E83B84AC4C306B02EB03E9CF59A7E6C9C1C4754138687C3EA
tools\workman-us\wm-us_amd64.msi
md5: 1829C487DEC89771045C98F9702927DF | sha1: 6005834B2CADCBD2DD02887E7174EF8C8D278CD8 | sha256: EDC4F659D892C6471461C3571F7D823FC845EC71F3B87FB1FA155033C2D7A1DF | sha512: 0E574393AA43ED729F487D9B1E89A06D180CA1DE141A9E5F03E7AA25A9C5072C934E49E8D4D2751A8AFB1070CD0CED1E73D03B96A22FC5862FDD40260B5086A6
tools\workman-us\wm-us_i386.msi
md5: 5B780BF835D78CDA6DA770165538C7AF | sha1: F0FF82B663E7BB837A1196A8D17FA22FA36E3D5C | sha256: 7E978F51CD680446372C9056CEB774BD0801F2E2438B24D749BC6BD960F7913B | sha512: A4069A4409B7C9429D8EF52268F001FC3E41858562D3BAD517CBE569447A25E6F38283075BFFFBF586C42B0C6869AB57877E4B74401850888AFF769BF07A56D2
tools\workman-us\wow64\wm-us.dll
md5: 51520A8EF18EC4DAEADF33DDD5C2D80F | sha1: 8373FB343F027B9649CA968DCD5AA3E6ABB00CBF | sha256: 72233B3CA1ED7409707C4265E79D54A9FE435A5E3F932758B6F1927976BCC900 | sha512: F9B18DBB38F47A8CC13992F7C454A8D4A7C6F70F4B13FA0548938F68155D7D529BA1628C396ACDFA9924E928F48C41A77B8B3C4E748B3EDEC0758C8726C6E0DA

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

Initial Release


This package has no dependencies.

Discussion for the Workman Package

Ground Rules:

  • This discussion is only about Workman and the Workman 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 Workman, 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