Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
27,824
Downloads of v 1.0.0-alpha37:
219
Last Update:
28 Nov 2017
Package Maintainer(s):
Software Author(s):
- Eugene Pankov (and contributors)
Tags:
terminal console windows- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Terminus
This is a prerelease version of Terminus.
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
27,824
Downloads of v 1.0.0-alpha37:
219
Software Author(s):
- Eugene Pankov (and contributors)
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
All Checks are Passing
2 Passing Test
To install Terminus, run the following command from the command line or from PowerShell:
To upgrade Terminus, run the following command from the command line or from PowerShell:
To uninstall Terminus, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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://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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download terminus --internalize --version=1.0.0-alpha37 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade terminus -y --source="'STEP 3 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 terminus -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure terminus installed
win_chocolatey:
name: terminus
state: present
version: 1.0.0-alpha37
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'terminus' do
action :install
version '1.0.0-alpha37'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: terminus,
Version: 1.0.0-alpha37,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller terminus
{
Name = 'terminus'
Ensure = 'Present'
Version = '1.0.0-alpha37'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'terminus':
provider => 'chocolatey',
ensure => '1.0.0-alpha37',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install terminus version="1.0.0-alpha37" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
Terminus is a web technology based terminal heavily inspired by Hyper. It is, however, designed for people who need to get things done.
Runs on Windows, macOS and Linux
Theming and color schemes
Configurable hotkey schemes
GNU Screen style hotkeys available by default
Full Unicode support including double-width characters
Doesn't choke on fast-flowing outputs
Tab persistence on macOS and Linux
Proper shell-like experience on Windows including tab completion (thanks, Clink!)
CMD, PowerShell, Cygwin, Git-Bash and Bash on Windows support
Default Linux style hotkeys for copy (Ctrl+Shift+C) and paste (Ctrl+Shift+V)
$packageName = 'terminus'
$installerType = 'EXE'
$url = 'https://github.com/Eugeny/terminus/releases/download/v1.0.0-alpha.37/terminus-Setup-1.0.0-alpha.37.exe'
$checksum = '2441B0FD8BFB21D397C92664C1F0AFF5749B58E795C5A415A240881EFF32A86B'
$checkumType = 'sha256'
$silentArgs = '/silent'
$validExitCodes = @(0)
Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" -checksum $checksum -checksumType $checkumType -validExitCodes $validExitCodes
Log in or click on link to see number of positives.
- terminus.1.0.0-alpha37.nupkg (e477601e3f8f) - ## / 60
- terminus-Setup-1.0.0-alpha.37.exe (2441b0fd8bfb) - ## / 66
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Terminus 1.0.134 | 351 | Tuesday, February 16, 2021 | Approved |
Terminus 1.0.132 | 248 | Thursday, February 11, 2021 | Approved |
Terminus 1.0.130 | 363 | Wednesday, February 3, 2021 | Approved |
Terminus 1.0.129 | 307 | Thursday, January 28, 2021 | Approved |
Terminus 1.0.127 | 428 | Saturday, January 16, 2021 | Approved |
Terminus 1.0.126 | 265 | Monday, January 11, 2021 | Approved |
Terminus 1.0.125 | 218 | Thursday, January 7, 2021 | Approved |
Terminus 1.0.123 | 379 | Tuesday, December 29, 2020 | Approved |
Terminus 1.0.122 | 504 | Thursday, December 10, 2020 | Approved |
Terminus 1.0.120 | 1474 | Sunday, August 30, 2020 | Approved |
Terminus 1.0.119 | 128 | Thursday, August 27, 2020 | Approved |
Terminus 1.0.117 | 411 | Saturday, August 15, 2020 | Approved |
Terminus 1.0.116 | 319 | Friday, August 7, 2020 | Approved |
Terminus 1.0.115 | 258 | Saturday, August 1, 2020 | Approved |
Terminus 1.0.114 | 212 | Tuesday, July 28, 2020 | Approved |
Terminus 1.0.113.20200723 | 291 | Wednesday, July 22, 2020 | Approved |
Terminus 1.0.113 | 338 | Monday, July 20, 2020 | Approved |
Terminus 1.0.112 | 996 | Friday, May 29, 2020 | Approved |
Terminus 1.0.110 | 723 | Wednesday, May 6, 2020 | Approved |
Terminus 1.0.109 | 209 | Monday, May 4, 2020 | Approved |
Terminus 1.0.108 | 421 | Friday, April 24, 2020 | Approved |
Terminus 1.0.106 | 493 | Saturday, April 11, 2020 | Approved |
Terminus 1.0.105 | 485 | Thursday, March 26, 2020 | Approved |
Terminus 1.0.104 | 706 | Thursday, March 5, 2020 | Approved |
Terminus 1.0.103 | 571 | Tuesday, February 18, 2020 | Approved |
Terminus 1.0.102 | 388 | Tuesday, February 11, 2020 | Approved |
Terminus 1.0.101 | 427 | Saturday, February 1, 2020 | Approved |
Terminus 1.0.100 | 459 | Thursday, January 16, 2020 | Approved |
Terminus 1.0.99 | 46 | Wednesday, January 15, 2020 | Approved |
Terminus 1.0.98 | 418 | Saturday, January 4, 2020 | Approved |
Terminus 1.0.97 | 869 | Wednesday, November 27, 2019 | Approved |
Terminus 1.0.92 | 942 | Tuesday, October 15, 2019 | Approved |
Terminus 1.0.91 | 780 | Wednesday, September 11, 2019 | Approved |
Terminus 1.0.90 | 398 | Monday, September 2, 2019 | Approved |
Terminus 1.0.89 | 270 | Thursday, August 29, 2019 | Approved |
Terminus 1.0.88 | 374 | Friday, August 23, 2019 | Approved |
Terminus 1.0.77 | 1832 | Saturday, May 4, 2019 | Approved |
Terminus 1.0.76 | 285 | Monday, April 29, 2019 | Approved |
Terminus 1.0.75 | 320 | Monday, April 22, 2019 | Approved |
Terminus 1.0.73 | 855 | Monday, March 11, 2019 | Approved |
Terminus 1.0.71 | 609 | Tuesday, February 12, 2019 | Approved |
Terminus 1.0.70 | 200 | Sunday, February 10, 2019 | Approved |
Terminus 1.0.69 | 426 | Saturday, January 19, 2019 | Approved |
Terminus 1.0.68 | 356 | Thursday, January 3, 2019 | Approved |
Terminus 1.0.67 | 272 | Thursday, December 27, 2018 | Approved |
Terminus 1.0.66 | 195 | Saturday, December 22, 2018 | Approved |
Terminus 1.0.65 | 188 | Friday, December 14, 2018 | Approved |
Terminus 1.0.1 | 336 | Monday, December 3, 2018 | Approved |
Terminus 1.0.0-alpha63 | 171 | Tuesday, November 20, 2018 | Exempted |
Terminus 1.0.0-alpha62 | 154 | Sunday, October 28, 2018 | Exempted |
Terminus 1.0.0-alpha61 | 140 | Friday, October 12, 2018 | Exempted |
Terminus 1.0.0-alpha59 | 129 | Tuesday, October 9, 2018 | Exempted |
Terminus 1.0.0-alpha58 | 134 | Thursday, October 4, 2018 | Exempted |
Terminus 1.0.0-alpha57 | 143 | Monday, September 24, 2018 | Exempted |
Terminus 1.0.0-alpha56 | 112 | Friday, September 21, 2018 | Exempted |
Terminus 1.0.0-alpha55 | 135 | Tuesday, September 11, 2018 | Exempted |
Terminus 1.0.0-alpha54 | 138 | Tuesday, August 28, 2018 | Exempted |
Terminus 1.0.0-alpha52 | 123 | Thursday, August 23, 2018 | Exempted |
Terminus 1.0.0-alpha51 | 134 | Friday, August 10, 2018 | Exempted |
Terminus 1.0.0-alpha50 | 117 | Friday, August 10, 2018 | Exempted |
Terminus 1.0.0-alpha49 | 110 | Thursday, August 9, 2018 | Exempted |
Terminus 1.0.0-alpha48 | 154 | Tuesday, July 3, 2018 | Exempted |
Terminus 1.0.0-alpha47 | 192 | Wednesday, May 16, 2018 | Exempted |
Terminus 1.0.0-alpha46 | 180 | Friday, May 4, 2018 | Exempted |
Terminus 1.0.0-alpha45 | 175 | Thursday, April 19, 2018 | Exempted |
Terminus 1.0.0-alpha44 | 200 | Sunday, April 1, 2018 | Exempted |
Terminus 1.0.0-alpha43 | 185 | Thursday, March 29, 2018 | Exempted |
Terminus 1.0.0-alpha42 | 173 | Tuesday, March 20, 2018 | Exempted |
Terminus 1.0.0-alpha41 | 196 | Thursday, March 15, 2018 | Exempted |
Terminus 1.0.0-alpha40 | 181 | Thursday, March 8, 2018 | Exempted |
Terminus 1.0.0-alpha39 | 186 | Monday, January 22, 2018 | Exempted |
Terminus 1.0.0-alpha38 | 215 | Friday, December 15, 2017 | Exempted |
Terminus 1.0.0-alpha37 | 219 | Tuesday, November 28, 2017 | Exempted |
Terminus 1.0.0-alpha36 | 234 | Thursday, November 23, 2017 | Exempted |
Terminus 1.0.0-alpha35 | 221 | Saturday, November 4, 2017 | Exempted |
Terminus 1.0.0-alpha33 | 211 | Saturday, October 7, 2017 | Exempted |
Terminus 1.0.0-alpha28 | 251 | Wednesday, August 23, 2017 | Exempted |
Terminus 1.0.0-alpha27 | 212 | Monday, August 7, 2017 | Exempted |
Terminus 1.0.0-alpha23 | 231 | Saturday, July 29, 2017 | Exempted |
© Eugene Pankov
This package has no dependencies.
Ground Rules:
- This discussion is only about Terminus and the Terminus 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 Terminus, 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.