-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add in osx atom, sublime, franz, jq and python workflow
- Loading branch information
Showing
12 changed files
with
246 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/sh | ||
|
||
ATOM_IS_AVAILABLE="$(atom --version 2>&1 >/dev/null)" | ||
|
||
if [[ ${ATOM_IS_AVAILABLE} == '' ]]; then | ||
|
||
echo -e "${bakgrn}[installed][atom]${txtrst}" ; | ||
|
||
else | ||
|
||
echo -e "${bakcyn}[atom] Start Install ${txtrst}"; | ||
|
||
brew cask install atom | ||
|
||
echo -e "${bakgrn}[atom] Finish Install ${txtrst}"; | ||
|
||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
#!/bin/sh | ||
|
||
BREWCASKROOM_IS_AVAILABLE="$(sudo -u $DOTFILE_DEFAULT_USER brew cask --version 2>&1 >/dev/null)" | ||
BREWCASKROOM_IS_AVAILABLE="$(brew cask --version 2>&1 >/dev/null)" | ||
|
||
if [[ ${BREWCASKROOM_IS_AVAILABLE} == '' ]]; then | ||
echo -e "${bakgrn}[installed][brew-cask]${txtrst} already installed ;)" ; | ||
|
||
echo -e "${bakgrn}[installed][brew-cask]${txtrst}" ; | ||
|
||
else | ||
|
||
echo -e "${bakcyn}[brew-cask] Start Install ${txtrst}"; | ||
sudo -u $DOTFILE_DEFAULT_USER brew tap caskroom/cask | ||
|
||
brew tap caskroom/cask | ||
|
||
echo -e "${bakgrn}[brew-cask] Finish Install ${txtrst}"; | ||
|
||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
#!/bin/sh | ||
|
||
BREW_IS_AVAILABLE="$(sudo -u $DOTFILE_DEFAULT_USER brew --version 2>&1 >/dev/null)" | ||
BREW_IS_AVAILABLE="$(brew --version 2>&1 >/dev/null)" | ||
|
||
if [[ ${BREW_IS_AVAILABLE} == '' ]]; then | ||
echo -e "${bakgrn}[installed][Brew]${txtrst} already installed ;)" ; | ||
|
||
echo -e "${bakgrn}[installed][Brew]${txtrst}" ; | ||
|
||
else | ||
|
||
echo -e "${bakcyn}[Brew] Start Install ${txtrst}"; | ||
sudo -u $DOTFILE_DEFAULT_USER /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | ||
|
||
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | ||
|
||
echo -e "${bakgrn}[Brew] Finish Install ${txtrst}"; | ||
|
||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/sh | ||
|
||
FRANZ_IS_AVAILABLE="$(brew cask list | grep franz --version 2>&1 >/dev/null)" | ||
|
||
if [[ ${FRANZ_IS_AVAILABLE} == '' ]]; then | ||
|
||
echo -e "${bakgrn}[installed][franz]${txtrst}" ; | ||
|
||
else | ||
|
||
echo -e "${bakcyn}[franz] Start Install ${txtrst}"; | ||
|
||
brew cask install franz | ||
|
||
echo -e "${bakgrn}[franz] Finish Install ${txtrst}"; | ||
|
||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
#!/bin/sh | ||
|
||
GIT_IS_AVAILABLE="$(sudo -u $DOTFILE_DEFAULT_USER git --version 2>&1 >/dev/null)" | ||
GIT_IS_AVAILABLE="$(git --version 2>&1 >/dev/null)" | ||
|
||
if [[ ${GIT_IS_AVAILABLE} == '' ]]; then | ||
echo -e "${bakgrn}[installed][Git]${txtrst} already installed ;)" ; | ||
|
||
echo -e "${bakgrn}[installed][Git]${txtrst}" ; | ||
|
||
else | ||
|
||
echo -e "${bakcyn}[Git] Start Install ${txtrst}"; | ||
sudo -u $DOTFILE_DEFAULT_USER brew install git | ||
|
||
brew install git | ||
|
||
echo -e "${bakgrn}[Git] Finish Install ${txtrst}"; | ||
|
||
fi | ||
fi |
6 changes: 3 additions & 3 deletions
6
...scripts/jq-command-line-JSON-processor.sh → sh/osx/scripts/jq.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.