mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-11 07:10:29 +00:00
26 lines
525 B
Fish
26 lines
525 B
Fish
function omf.bundle.add -a type name_or_url
|
|
function __omf.write_bundle
|
|
set -l bundle $OMF_CONFIG/bundle
|
|
set -l record $argv
|
|
|
|
if test -f $bundle
|
|
if not grep $record $bundle > /dev/null 2>&1
|
|
echo $record >> $bundle
|
|
end
|
|
else
|
|
echo $record > $bundle
|
|
end
|
|
|
|
sort -u $bundle -o $bundle
|
|
end
|
|
|
|
function __omf.write_theme
|
|
echo $argv > $OMF_CONFIG/theme
|
|
end
|
|
|
|
__omf.write_bundle "$type" "$name_or_url"
|
|
if test "$type" = theme
|
|
__omf.write_theme "$name_or_url"
|
|
end
|
|
end
|