From 76441e6162566e689c23ab01c49e1f17a86b00e2 Mon Sep 17 00:00:00 2001 From: Kevin Unkrich Date: Thu, 22 Sep 2022 11:55:20 +0100 Subject: [PATCH] Add command to open swag store --- README.md | 1 + config/commands.js | 4 ++++ config/help.js | 1 + 3 files changed, 6 insertions(+) diff --git a/README.md b/README.md index c54eeed9..d7f2ebd2 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ Who needs a website when you have a terminal. - instagram: instagram account - git: this repo - github: all repos + - swag: rootvc store - test: do not use - other: try your favorite linux commands diff --git a/config/commands.js b/config/commands.js index e7452f9c..97584077 100644 --- a/config/commands.js +++ b/config/commands.js @@ -91,6 +91,10 @@ const commands = { term.openURL("https://gfycat.com/ifr/WhiteBountifulAfricangroundhornbill"); }, + swag: function() { + term.openURL("https://rootvc.creator-spring.com"); + }, + email: function() { term.command("pine"); }, diff --git a/config/help.js b/config/help.js index ff40a0ce..35855609 100644 --- a/config/help.js +++ b/config/help.js @@ -12,6 +12,7 @@ const help = { "%github%": "all repos", "%locate%": "physical address", "%jobs%": "check out our job openings", + "%swag%": "rootvc store", "%test%": "do not use", "%other%": "try your fav commands (e.g. %ls%, %groups%, %su%)" };