You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

25 lines
403 B

#!/bin/bash
case $1 in
edit)
$EDITOR $ROOT/config/$2
;;
add)
echo " - $2" >> $ROOT/packages.conf.yaml
;;
install)
~/dotfiles/installer
;;
*)
echo "Commands:"
echo " install installs the dotfiles"
echo " edit edit one of the config files"
echo " add add a package to the list"
;;
esac