mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
127 lines
3.5 KiB
Fish
127 lines
3.5 KiB
Fish
# SYNOPSIS
|
|
# Oh My Fish CLI
|
|
#
|
|
# ENV
|
|
# OMF_VERSION Version
|
|
# OMF_CONFIG Oh My Fish configuration
|
|
#
|
|
# OVERVIEW
|
|
# Provides options to list, download and remove packages, update
|
|
# the framework, create / submit a new package, etc.
|
|
|
|
set -g OMF_MISSING_ARG 1
|
|
set -g OMF_UNKNOWN_OPT 2
|
|
set -g OMF_INVALID_ARG 3
|
|
set -g OMF_UNKNOWN_ERR 4
|
|
|
|
set -g OMF_VERSION "1.0.0"
|
|
|
|
function omf::em; set_color -o yellow ; end
|
|
function omf::dim; set_color -o 888 ; end
|
|
function omf::err; set_color -o red ; end
|
|
function omf::off; set_color normal ; end
|
|
|
|
function init -a path --on-event init_omf
|
|
autoload $path/cli $path/util
|
|
end
|
|
|
|
function omf -d "Oh My Fish"
|
|
if test (count $argv) -eq 0
|
|
omf_help; and return 0
|
|
end
|
|
|
|
switch $argv[1]
|
|
case "v" "ver" "version"
|
|
omf_version
|
|
|
|
case "q" "query"
|
|
switch (count $argv)
|
|
case 1
|
|
omf_query_env
|
|
case 2
|
|
omf_query_env "$argv[2]"
|
|
case "*"
|
|
echo (omf::err)"Invalid number of arguments"(omf::off) 1^&2
|
|
echo "Usage: $_ "(omf::em)"$argv[1]"(omf::off)" [<variable name>]" 1^&2
|
|
return $OMF_INVALID_ARG
|
|
end
|
|
|
|
case "h" "help"
|
|
omf_help
|
|
|
|
case "l" "li" "lis" "lst" "list"
|
|
omf_list_local_packages | column
|
|
|
|
case "g" "ge" "get" "install"
|
|
if test (count $argv) -eq 1
|
|
omf_list_db_packages | column
|
|
else
|
|
omf_get_package $argv[2..-1]
|
|
end
|
|
|
|
case "u" "use"
|
|
if test (count $argv) -eq 1
|
|
set -l theme (cat $OMF_CONFIG/theme)
|
|
set -l regex "[[:<:]]($theme)[[:>:]]"
|
|
test "$OSTYPE" != "Darwin"; and set regex "\b($theme)\b"
|
|
|
|
omf_list_themes | column | sed -E "s/$regex/"(omf::em)"\1"(omf::off)"/"
|
|
omf::off
|
|
|
|
else if test (count $argv) -eq 2
|
|
omf_use $argv[2]
|
|
else
|
|
echo (omf::err)"Invalid number of arguments"(omf::off) 1^&2
|
|
echo "Usage: $_ "(omf::em)"$argv[1]"(omf::off)" [<theme name>]" 1^&2
|
|
return $OMF_INVALID_ARG
|
|
end
|
|
|
|
case "r" "rm" "remove" "uninstall"
|
|
if test (count $argv) -ne 2
|
|
echo (omf::err)"Invalid number of arguments"(omf::off) 1^&2
|
|
echo "Usage: $_ "(omf::em)"$argv[1]"(omf::off)" <[package|theme] name>" 1^&2
|
|
return $OMF_INVALID_ARG
|
|
end
|
|
omf_remove_package $argv[2..-1]
|
|
|
|
case "p" "up" "upd" "update"
|
|
pushd $OMF_PATH
|
|
echo (omf::em)"Updating Oh My Fish..."(omf::off)
|
|
if omf_update
|
|
echo (omf::em)"Oh My Fish is up to date."(omf::off)
|
|
else
|
|
echo (omf::err)"Oh My Fish failed to update."(omf::off)
|
|
echo "Please open a new issue here → "(omf::em)"git.io/omf-issues"(omf::off)
|
|
end
|
|
omf_use (cat $OMF_CONFIG/theme)
|
|
omf_get_package (omf_list_installed_packages)
|
|
popd
|
|
refresh
|
|
|
|
case "s" "su" "sub" "submit"
|
|
switch (count $argv)
|
|
case 3
|
|
omf_submit $argv[2] $argv[3]
|
|
case "*"
|
|
echo (omf::err)"Argument missing"(omf::off) 1^&2
|
|
echo "Usage: $_ "(omf::em)"$argv[1]"(omf::off)" "(omf::em)"pkg|themes"(omf::off)"/<name> <url>" 1^&2
|
|
return $OMF_MISSING_ARG
|
|
end
|
|
|
|
case "n" "nw" "new"
|
|
if test (count $argv) -ne 3
|
|
echo (omf::err)"Package type or name missing"(omf::off) 1^&2
|
|
echo "Usage: $_ "(omf::em)"$argv[1]"(omf::off)" "(omf::em)"pkg|theme"(omf::off)" <name>" 1^&2
|
|
return $OMF_MISSING_ARG
|
|
end
|
|
omf_new $argv[2..-1]
|
|
|
|
case "destroy"
|
|
omf_destroy
|
|
|
|
case "*"
|
|
echo (omf::err)"$argv[1] option not recognized"(omf::off) 1^&2
|
|
return $OMF_UNKNOWN_OPT
|
|
end
|
|
end
|