Skip to content

Commit

Permalink
API added
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Ferreiro committed Mar 27, 2016
1 parent 3da5f91 commit 7d69775
Show file tree
Hide file tree
Showing 66 changed files with 9 additions and 36 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,13 +169,13 @@ I know that feeling. You are starting to see all that strange bash scripts and y
- [Unofficial Guide to Dotfiles on Github](https://dotfiles.github.io) is a great online guide with a bunch of useful links and tips to get started or make your Dotfiles even better.
- [Popular repositories by JF](https://github.com/Ferreiros-lab/popular-dotfiles.git) is a list of useful Dotfiles Repositories I created to get Ideas from.

#<a name="thanks/>Special thanks
#<a name="thanks"/> Special thanks

I want to give special thanks to some amazing developers who shared publicly their Dotfiles, letting the community to learn from their work.

Thanks to them I've learned to make my Dotfiles even better. I strongly recommend you to check their repositories, you'll learn a lot.

**@webpro**. Webpro is the guy who made the 'Getting Starting With Dofiles' article that I recommend you to read in the ['New to Dotfiles'](#newbie) section. I started my Dotfiles following his structure. I [Webpro Dotfiles](https://github.com/webpro/dotfiles) they are really well organised and contains interesting scripts and features (like running only specific parts of your Dotfiles instead the whole program from terminal).
**@webpro**. Webpro is the guy who made the 'Getting Starting With Dofiles' article that I recommend you to read in the [New to Dotfiles](#newbie) section. I started my Dotfiles following his structure. I [Webpro Dotfiles](https://github.com/webpro/dotfiles) they are really well organised and contains interesting scripts and features (like running only specific parts of your Dotfiles instead the whole program from terminal).

**@mathiasbynens**. Mathias created one of the most awesome Mac "defaults" scripts out there. His [dotfiles repository](https://github.com/mathiasbynens/dotfiles) contains also useful scripts. Check them out!

Expand Down
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions system/documents.sh → api/system/documents.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,3 @@ do
fi

done

exit 1
File renamed without changes.
12 changes: 7 additions & 5 deletions dotfiles.sh
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
#!/bin/bash

cat $DOTFILES_DIR/assets/welcome.txt
cat $DOTFILES_DIR/assets/menu.txt
EXECUTABLE_DIR="api"

PS3='Which number you want to execute?: '
cat $EXECUTABLE_DIR/assets/welcome.txt
cat $EXECUTABLE_DIR/assets/menu.txt

PS3='Number to execute: '
options=("Install" "Uninstall" "Update" "Quit")
select opt in "${options[@]}"
do
case $opt in
"Install")
echo "Launching the installer..."
. install.sh
. $EXECUTABLE_DIR/install.sh
;;
"Uninstall")
echo "Launching the uninstaller..."
. uninstall.sh
. $EXECUTABLE_DIR/uninstall.sh
;;
"Update")
echo "Updater is not currently supported"
Expand Down
27 changes: 0 additions & 27 deletions dotiles.sh

This file was deleted.

0 comments on commit 7d69775

Please sign in to comment.