From 4dd604cc20befa31ccacd8d10d6789d5bca29919 Mon Sep 17 00:00:00 2001 From: Nahuel Barrios Date: Sun, 15 Mar 2020 10:17:13 -0300 Subject: [PATCH 1/3] Add curl to latest version on README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index b36ccbc..bc6564d 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,15 @@ So you will have 3 tabs: - One for `efu.log` output. ⇐ *Full script output.* - One for `summary.efu.log` output. ⇐ *Most cases this will be enough.* +Tip: For CMD lovers... + +``` +curl -OJ https://codeload.github.com/barriosnahuel/efu/zip/v2.4.2 \ +&& unzip efu-2.4.2.zip \ +&& rm -rf efu-2.4.2.zip \ +&& cd efu-2.4.2 +``` + ## What does EFU do for me? With a little of your interaction, EFU will: - Create a directories tree under ~/Coding for coders. From 26ba245993dab0f3a9a85059ccb04d8b11d2dff7 Mon Sep 17 00:00:00 2001 From: Nahuel Barrios Date: Sun, 15 Mar 2020 10:24:58 -0300 Subject: [PATCH 2/3] Remove useless property in properties.sh by honouring $USER standard --- modules/oh-my-zsh/oh-my-zsh.sh | 2 +- properties.sh | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/modules/oh-my-zsh/oh-my-zsh.sh b/modules/oh-my-zsh/oh-my-zsh.sh index 07b96a8..454c884 100644 --- a/modules/oh-my-zsh/oh-my-zsh.sh +++ b/modules/oh-my-zsh/oh-my-zsh.sh @@ -29,7 +29,7 @@ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/mas postInstallationLog "Oh-My-ZSH" addToShell "# DEFAULT_USER env var is used to prevent showing the user@machine in some ZSH themes. i.e.: agnoster" -addToShell "export DEFAULT_USER=$MACHINE_USER" +addToShell "export DEFAULT_USER=$USER" logInfo "Adding custom GIT info to the terminal" cp modules/oh-my-zsh/custom-git.zsh ~/.oh-my-zsh/custom/ && diff --git a/properties.sh b/properties.sh index 0f9a2ac..b009926 100644 --- a/properties.sh +++ b/properties.sh @@ -1,11 +1,6 @@ #!/bin/bash # Created by Nahuel Barrios on 24/3/16. -######################################### -#### Used for some Oh-My-ZSH themes #### -######################################### -MACHINE_USER="nbarrios" - ######################################### #### Will be used for in GIT module. #### ######################################### From be1c5bc1185ff253ae9dbabc56ccdea8a06deea4 Mon Sep 17 00:00:00 2001 From: Nahuel Barrios Date: Sun, 15 Mar 2020 10:26:24 -0300 Subject: [PATCH 3/3] Run install.sh ubuntu by default --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b21cc78..2b7f113 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,8 @@ Tip: For CMD lovers... curl -OJ https://codeload.github.com/barriosnahuel/efu/zip/v2.4.2 \ && unzip efu-2.4.2.zip \ && rm -rf efu-2.4.2.zip \ -&& cd efu-2.4.2 +&& cd efu-2.4.2 \ +&& sh install.sh ubuntu ``` ## What does EFU do for me?