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:

647

Downloads of v 2.1.0:

647

Last Update:

16 Apr 2021

Package Maintainer(s):

Software Author(s):

  • rubjo ryanoasis

Tags:

nerd font programming powerline octicons awesome victormononf

VictorMonoNF

  • 1
  • 2
  • 3

2.1.0 | Updated: 16 Apr 2021

Downloads:

647

Downloads of v 2.1.0:

647

Maintainer(s):

Software Author(s):

  • rubjo ryanoasis

VictorMonoNF 2.1.0

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

>

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

>

To uninstall VictorMonoNF, 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 victormononf -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 victormononf -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 victormononf
  win_chocolatey:
    name: victormononf
    version: '2.1.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'victormononf' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.1.0'
end

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


cChocoPackageInstaller victormononf
{
    Name     = "victormononf"
    Version  = "2.1.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'victormononf':
  ensure   => '2.1.0',
  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 16 Apr 2021.

Description

VictorMonoNF

Nerd Fonts patches developer targeted fonts with a high number of glyphs
(icons). Specifically to add a high number of extra glyphs from popular
'iconic fonts' such as
Font Awesome,
Devicons,
Octicons, and
others.

GitHub release
GitHub Release Date
Travis (.org)
GitHub
GitHub stars

A programming font with semi-connected cursive italics and symbol ligatures.

More information and download: rubjo.github.io/victor-mono. I would be grateful if you point others to the same URL.

For use in apps, web pages or other projects:

  1. npm i victormono (installs Regular, Italic, Bold and Bold Italic styles)
  2. import 'victormono' (in a typical modern setup, eg. webpack)
  3. Style classes with font-family: 'Victor Mono', font-weight and font-style
Alternative CDN hosting, best for online editors like CodePen:
  1. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/victormono@latest/dist/index.min.css"> in <head> or top of <body>
  2. Style classes with font-family: 'Victor Mono', monospace

If you like it and want to say thanks, donations are welcome. ❤️

Which font?

TL;DR

  • Pick your font family and then select from the 'complete' directory.
    • If you are on Windows pick a font with the 'Windows Compatible' suffix.
      • This includes specific tweaks to ensure the font works on Windows, in particular monospace identification and font name length limitations
    • If you are limited to monospaced fonts (because of your termina

...


tools\chocolateyBeforeModify.ps1
$ErrorActionPreference = 'Stop'

Uninstall-ChocolateyFont "VictorMonoNF-Bold.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Bold-Italic.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Bold-Oblique.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Extra-Light.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Extra-Light-Italic.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Extra-Light-Oblique.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Italic.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Light.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Light-Italic.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Light-Oblique.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Medium.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Medium-Italic.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Medium-Oblique.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Oblique.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Regular.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Semi-Bold.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Semi-Bold-Italic.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Semi-Bold-Oblique.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Thin.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Thin-Italic.ttf"
Uninstall-ChocolateyFont "VictorMonoNF-Thin-Oblique.ttf"
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = "$toolsDir\victorMonoNF.zip"

Get-ChocolateyUnzip -FileFullPath $url -Destination $toolsDir

Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Bold.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Bold-Italic.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Bold-Oblique.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Extra-Light.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Extra-Light-Italic.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Extra-Light-Oblique.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Italic.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Light.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Light-Italic.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Light-Oblique.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Medium.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Medium-Italic.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Medium-Oblique.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Oblique.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Regular.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Semi-Bold.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Semi-Bold-Italic.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Semi-Bold-Oblique.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Thin.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Thin-Italic.ttf"
Install-ChocolateyFont "$toolsDir\otf\VictorMonoNF-Thin-Oblique.ttf"

Remove-Item "$toolsDir\otf" -Recurse -ErrorAction SilentlyContinue | Out-Null
Remove-Item "$toolsDir\*.zip" -ErrorAction SilentlyContinue | Out-Null
tools\LICENSE.txt
MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\VERIFICATION.txt
============================= VictorMonoNF =============================

Downloads the VictorMonoNF otf as a .zip and installs to system fonts
courtesy of chocolatey-font-helpers.extension. Follow the step-by-step
to verify the checksums

Step 1:
Download the zip file from
https://github.com/FredHappyface/Choco.Packages/tree/master/victormononf/package/tools/victorMonoNF.zip

Alternatively source the fonts from
https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/VictorMono
and compile the zip file using each "Nerd Font Complete Windows Compatible.ttf"

Step 2:
Extract the zip file and grab/ copy the otf directory

RouteA or RouteB
RouteA to verify the individual .otf files, RouteB to verify a zip file
containing the otf/ directory

RouteA
Step 3:
Open a powershell terminal and run
```powershell
Get-ChildItem | Get-FileHash | Export-Csv checksum.csv
```

Step 4:
Open the csv (many forms of spreadsheet software can help with this. e.g.
Microsoft Excel, LibreOffice Calc). The SHA256 will match those in the
Font List below

(Note that I have reordered the columns)


RouteB
Step 3:
Zip the otf/ directory and run
```powershell
Get-FileHash [zip-name]
```

The SHA256 Hash is 6a5047a6c173e18ef6a592c9a9b0cc36ec66714cc9462c01a9d3da2b3212bc95


------------------------------ Font List ------------------------------

Algorithm	Hash	Font
  SHA256	1eefd43b8315a77b06563c20096a64d5ee9e578dcd6e801c845eeaeb3239b137	VictorMonoNF-Bold.ttf
  SHA256	e6a8a5fb4b5dfe8cfdef5cb60c03529ba021b9f62054d6aa948ac639d55369cc	VictorMonoNF-Bold-Italic.ttf
  SHA256	f5827649602290d4d812a4b24c18cbebb092a9870bbcda4bc2df14f95451b5a9	VictorMonoNF-Bold-Oblique.ttf
  SHA256	f1180d7bf6672a4686846e6b9bcc5d395101e1906dd764d594e083f6ed223b99	VictorMonoNF-Extra-Light.ttf
  SHA256	a51d76a9c88218344c6b7fc76c1e0e81f75b0d2dec4e3857d3559ef4b2cb1229	VictorMonoNF-Extra-Light-Italic.ttf
  SHA256	3d4e715d3c34c6cad436abe9ca490ab35ae73d0fb9af26d73730179bb433b6b2	VictorMonoNF-Extra-Light-Oblique.ttf
  SHA256	610fb697931eaf2d7e4c734818b2f7fefa8b04f3984e02c5af2574cfc148c3fa	VictorMonoNF-Italic.ttf
  SHA256	2a438320f5ddf29817a532e35cadb2e75a5d96a2f12eba5ed83ac4442e2c66dc	VictorMonoNF-Light.ttf
  SHA256	d4be2c7d9b40a5f386916c35aa34c6e7482705cc7f9e06a02746c0b8818e6fce	VictorMonoNF-Light-Italic.ttf
  SHA256	0c0ad43f7869c624656c0d4e79446e87df51841142d3555864ec65c80ddaac3e	VictorMonoNF-Light-Oblique.ttf
  SHA256	07d446a936ed2d7a48c16b57275811343376c921545948a9871906cab73163a2	VictorMonoNF-Medium.ttf
  SHA256	569abe9735295825b69964167f393f99fa6e57c2fead9c2e16688877be715674	VictorMonoNF-Medium-Italic.ttf
  SHA256	46ecd5c9809cfa91d4aa10d00292d4c95a4396dadbc321743df19f7789ccd886	VictorMonoNF-Medium-Oblique.ttf
  SHA256	e3a0a661768786dca57351e7cb52565308cdd73f0bdad2e75b1faf2de7eeb405	VictorMonoNF-Oblique.ttf
  SHA256	edfd8e314e13a8423bdda78bbc97218786640893083aac3bfc5cf4ce9ce1e496	VictorMonoNF-Regular.ttf
  SHA256	1c710a7726df1ced1174fc60968edb55db2725bbf3ec018aa5418ceb1b19bda0	VictorMonoNF-Semi-Bold.ttf
  SHA256	50fec31ca6462ee6ca8d923e5e7500dfef77639c2287255105ddb65c76ca98f9	VictorMonoNF-Semi-Bold-Italic.ttf
  SHA256	e082f775b45182ad815e39b043188b97ee33467df09385e33319f803d1a98170	VictorMonoNF-Semi-Bold-Oblique.ttf
  SHA256	2327f17b355ecc13e9badd328e630a1c0312ee451ee2c2343e06db5b864dd1d8	VictorMonoNF-Thin.ttf
  SHA256	d6830e31e9f6931abc7735d25d250ca4623907bf4b9964a73110c1301698667e	VictorMonoNF-Thin-Italic.ttf
  SHA256	0653e227e75e0de40b6106632f5e538baf95fe95b53cec858a1cdf86e5dfb003	VictorMonoNF-Thin-Oblique.ttf

============================= VictorMonoNF =============================
tools\victorMonoNF.zip
md5: DB282BF3C3E6C0D6FD7686538486EC74 | sha1: 2C794DA9479FE13FCDCD6E1A04DC624111310FE7 | sha256: 6A5047A6C173E18EF6A592C9A9B0CC36EC66714CC9462C01A9D3DA2B3212BC95 | sha512: A0854C0B308369031552F5D845E26A7D892FFDC4BD237041A9A7FAC693DEBC7526A7365C1A2D8358D014CEF0C9886B1915794D59A7274C189C3BFC4654912176

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
Discussion for the VictorMonoNF Package

Ground Rules:

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