From 27cd3bee4ee236fb4d0ba40430bda09dded8acbc Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Mon, 1 May 2023 06:20:00 -0400 Subject: [PATCH] added help cmd --- homeConfig/dotfiles/bash/bashrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/homeConfig/dotfiles/bash/bashrc b/homeConfig/dotfiles/bash/bashrc index 1dc031c..a5d36a5 100644 --- a/homeConfig/dotfiles/bash/bashrc +++ b/homeConfig/dotfiles/bash/bashrc @@ -42,7 +42,7 @@ fi # Alias List alias ls='lsd' - # penpot {run|stop|update} alias function + # penpot {run|stop|update|help} alias function penpot() { case "$1" in run) @@ -62,8 +62,11 @@ fi sudo docker compose -f ~/Documents/tools/penpot/docker-compose.yaml pull echo "Updated penpot!" ;; + help) + xdg-open "https://help.penpot.app/" + ;; *) - echo "Usage: penpot {run|stop|update}" + echo "Usage: penpot {run|stop|update|help}" ;; esac }