2015-12-20 17:57:51 -02:00
|
|
|
function omf.cli.themes.list
|
2017-03-03 09:06:13 -06:00
|
|
|
test -f $OMF_CONFIG/theme
|
|
|
|
and read -l theme < $OMF_CONFIG/theme
|
|
|
|
or set -l theme default
|
|
|
|
|
2015-12-20 17:57:51 -02:00
|
|
|
set -l regex_current "(^|[[:space:]])($theme)([[:space:]]|\$)"
|
|
|
|
set -l highlight_current s/"$regex_current"/"\1"(omf::em)"\2"(omf::off)"\3"/g
|
|
|
|
|
|
|
|
echo (omf::under)"Installed:"(omf::off)
|
2017-02-04 21:49:39 -06:00
|
|
|
omf.packages.list --theme | column | sed -E "$highlight_current"
|
2015-12-20 17:57:51 -02:00
|
|
|
echo
|
|
|
|
echo (omf::under)"Available:"(omf::off)
|
2017-02-04 21:49:39 -06:00
|
|
|
omf.index.query --type=theme | column
|
2015-12-20 17:57:51 -02:00
|
|
|
end
|