#!/usr/bin/env dash # shellcheck source=/dev/null SHELL_LIBRARY_VERSION="1.3.1" . %SHELL_LIBRARY_PATH # these are used in version() AUTHORS="Soispha" YEARS="2023" VERSION="1.0.0" NAME="neorg" help() { cat << EOF This is a quick wrapper to make starting neorg easier. Usage: $NAME [--help|--version] Options: --help | -h Display this help and exit. --version | -v Display version and copyright information and exit. The neorg workspace to open at startup, an empty value drops you at a prompt to enter the workspace yourself EOF } run_with_workspace() { nvim -c "NeorgStart" -s "$(ptmp ":Neorg workspace $1\n")" } run_without_workspace() { nvim -c "NeorgStart" -s "$(ptmp ":Neorg workspace ")" } neorg_workspace=""; run=true; while [ "$#" -ne 0 ]; do case "$1" in "--help" | "-h") if [ "$run" = true ]; then help fi run=false; ;; "--version" | "-v") if [ "$run" = true ]; then version fi run=false; ;; *) neorg_workspace="$1"; ;; esac shift 1 done if [ "$neorg_workspace" ] && [ "$run" = true ];then run_with_workspace "$neorg_workspace"; elif [ "$run" = true ]; then run_without_workspace fi # vim: ft=sh