mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-26 13:57:56 +00:00
host-* to hosts/*, dfm rework, renaming and stuff
This commit is contained in:
114
base/bashrc
114
base/bashrc
@@ -1,21 +1,113 @@
|
|||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
|
|
||||||
# Fig pre block. Keep at the top of this file.
|
# Defaults
|
||||||
[[ -f "$HOME/.fig/shell/bashrc.pre.bash" ]] && builtin source "$HOME/.fig/shell/bashrc.pre.bash"
|
export DOTFILES="$HOME/.dotfiles"
|
||||||
|
|
||||||
|
# Explicitly set XDG folders
|
||||||
|
# https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
||||||
|
export XDG_DATA_HOME="$HOME/.local/share"
|
||||||
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||||||
|
export XDG_STATE_HOME="$HOME/.local/state"
|
||||||
|
export XDG_BIN_HOME="$HOME/.local/bin" # this one is custom
|
||||||
|
|
||||||
|
# Homebrew configuration
|
||||||
|
export HOMEBREW="/opt/homebrew"
|
||||||
|
export HOMEBREW_BIN="$HOMEBREW/bin"
|
||||||
|
export HOMEBREW_SBIN="$HOMEBREW/sbin"
|
||||||
|
export HOMEBREW_PKG="$HOMEBREW/opt"
|
||||||
|
export HOMEBREW_NO_ENV_HINTS=1
|
||||||
|
|
||||||
|
export PATH="$XDG_BIN_HOME:$HOMEBREW_BIN:$HOMEBREW_SBIN:/usr/local/sbin:$PATH"
|
||||||
|
|
||||||
|
# brew, https://brew.sh
|
||||||
if command -v brew &> /dev/null; then
|
if command -v brew &> /dev/null; then
|
||||||
PHP_PATH=$(brew --prefix php)/bin
|
BREW_BIN=$(brew --prefix)/bin
|
||||||
export PATH="$PHP_PATH:$HOME/.composer/vendor/bin/:/usr/local/sbin:$PATH"
|
BREW_SBIN=$(brew --prefix)/sbin
|
||||||
|
|
||||||
|
BREW_PYTHON=$(brew --prefix python@3.8)/bin
|
||||||
|
GNUBIN_DIR=$(brew --prefix coreutils)/libexec/gnubin
|
||||||
|
BREW_RUBY=$(brew --prefix ruby)/bin
|
||||||
|
BREW_GEMS=$(gem environment gemdir)/bin
|
||||||
|
|
||||||
|
export PATH="$BREW_PYTHON:$GNUBIN_DIR:$BREW_GEMS:$BREW_RUBY:$BREW_BIN:$BREW_SBIN:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if command -v nvm &> /dev/null; then
|
# nvm, the node version manager
|
||||||
export NVM_DIR="$HOME/.nvm"
|
export NVM_LAZY_LOAD=true
|
||||||
[ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh" # This loads nvm
|
export NVM_COMPLETION=true
|
||||||
[ -s "/usr/local/opt/nvm/etc/bash_completion.d/nvm" ] && . "/usr/local/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
|
export NVM_AUTO_USE=true
|
||||||
|
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
|
||||||
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
|
|
||||||
|
# If we have go packages, include them to the PATH
|
||||||
|
if command -v go &> /dev/null; then
|
||||||
|
export GOPATH=$(go env GOPATH);
|
||||||
|
if [ -d "$GOPATH/bin" ]; then
|
||||||
|
export PATH="$GOPATH/bin:$PATH"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v nvim &> /dev/null; then
|
||||||
|
export EDITOR="nvim"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# z, https://github.com/rupa/z
|
||||||
|
export _Z_DATA="$XDG_STATE_HOME/z"
|
||||||
|
|
||||||
|
# composer, https://getcomposer.org/
|
||||||
|
if command -v composer &> /dev/null; then
|
||||||
|
export COMPOSER_HOME="$XDG_STATE_HOME/composer"
|
||||||
|
export COMPOSER_BIN="$COMPOSER_HOME/vendor/bin"
|
||||||
|
export PATH="$COMPOSER_BIN:$PATH"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# gem, rubygems
|
||||||
|
if command -v gem &>/dev/null; then
|
||||||
|
export GEM_HOME="$XDG_STATE_HOME/gem"
|
||||||
|
export GEM_PATH="$XDG_STATE_HOME/gem"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# wakatime, https://github.com/wakatime/wakatime-cli
|
||||||
|
export WAKATIME_HOME="$XDG_STATE_HOME/wakatime"
|
||||||
|
|
||||||
# Fig post block. Keep at the bottom of this file.
|
# Run x-load-configs in your terminal to reload the files.
|
||||||
[[ -f "$HOME/.fig/shell/bashrc.post.bash" ]] && builtin source "$HOME/.fig/shell/bashrc.post.bash"
|
function x-load-configs()
|
||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
{
|
||||||
|
# Load the shell dotfiles, and then some:
|
||||||
|
for file in $DOTFILES/config/{exports,alias,functions}; do
|
||||||
|
[ -r "$file" ] && [ -f "$file" ] && source "$file"
|
||||||
|
[ -r "$file-secret" ] && [ -f "$file-secret" ] && source "$file-secret"
|
||||||
|
[ -r "$file-$HOSTNAME" ] && [ -f "$file-$HOSTNAME" ] && source "$file-$HOSTNAME"
|
||||||
|
[ -r "$file-$HOSTNAME-secret" ] && [ -f "$file-$HOSTNAME-secret" ] && source "$file-$HOSTNAME-secret"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
x-load-configs
|
||||||
|
|
||||||
|
# Import ssh keys in keychain
|
||||||
|
ssh-add -A 2>/dev/null;
|
||||||
|
|
||||||
|
# op (1Password cli) is present
|
||||||
|
if hash op 2>/dev/null; then
|
||||||
|
export OP_CACHE="$XDG_STATE_HOME/1password"
|
||||||
|
mkdir -p "$OP_CACHE";
|
||||||
|
eval "$(op completion zsh)"; compdef _op op
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Ansible configuration
|
||||||
|
# https://docs.ansible.com/ansible/latest/reference_appendices/config.html
|
||||||
|
if hash ansible 2>/dev/null; then
|
||||||
|
export ANSIBLE_HOME="$XDG_STATE_HOME/ansible"
|
||||||
|
mkdir -p "$ANSIBLE_HOME"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# gcloud is present
|
||||||
|
#if hash gcloud 2>/dev/null; then
|
||||||
|
# GCLOUD_LOC=$(gcloud info --format="value(installation.sdk_root)" --quiet)
|
||||||
|
# [[ -f "$GCLOUD_LOC/path.zsh.inc" ]] && builtin source "$GCLOUD_LOC/path.zsh.inc"
|
||||||
|
# [[ -f "$GCLOUD_LOC/completion.zsh.inc" ]] && builtin source "$GCLOUD_LOC/completion.zsh.inc"
|
||||||
|
#fi
|
||||||
|
|
||||||
|
# Load iterm2 shell integration
|
||||||
|
# https://iterm2.com/documentation-shell-integration.html
|
||||||
|
[[ -f "$XDG_BIN_HOME/iterm2_shell_integration.zsh" ]] && source "$XDG_BIN_HOME/iterm2_shell_integration.zsh"
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
# .dotfiles/host-air
|
# .dotfiles/hosts/air
|
||||||
|
|
||||||
This is my home computer.
|
This is my home computer.
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
# .dotfiles/host-v
|
# .dotfiles/hosts/v
|
||||||
|
|
||||||
This is my work computer.
|
This is my work computer.
|
||||||
@@ -44,57 +44,75 @@
|
|||||||
path: base/**
|
path: base/**
|
||||||
prefix: '.'
|
prefix: '.'
|
||||||
|
|
||||||
- shell: [git submodule update --init --recursive --force, Installing submodules]
|
- shell:
|
||||||
|
- [git submodule update --init --recursive --force]
|
||||||
|
- [bash scripts/set-macos-defaults.sh]
|
||||||
|
- [bash scripts/install-npm-packages.sh]
|
||||||
|
|
||||||
|
- brewfile:
|
||||||
|
- Brewfile
|
||||||
|
|
||||||
|
- go:
|
||||||
|
- github.com/skx/sysbox@latest
|
||||||
|
|
||||||
|
# hosts: air
|
||||||
- if:
|
- if:
|
||||||
- cond: "[ $(uname) = Darwin ]"
|
- cond: '[[ $(hostname) = air ]]'
|
||||||
met:
|
met:
|
||||||
- shell:
|
|
||||||
- echo "Darwin system"
|
|
||||||
- [brew bundle install --file="Brewfile", Installing Brewfile contents]
|
|
||||||
- cond: "[[ $(hostname) = v ]]"
|
|
||||||
met:
|
|
||||||
- shell:
|
|
||||||
- echo "host is v"
|
|
||||||
- link:
|
|
||||||
~/.config/*:
|
|
||||||
force: true
|
|
||||||
glob: true
|
|
||||||
path: host-v/config/**
|
|
||||||
- go:
|
- go:
|
||||||
- github.com/delicb/cliware
|
|
||||||
- github.com/skx/sysbox@latest
|
- github.com/skx/sysbox@latest
|
||||||
- cond: "[[ $(hostname) = lakka ]]"
|
|
||||||
|
# hosts: v
|
||||||
|
- if:
|
||||||
|
- cond: '[[ $(hostname) = v ]]'
|
||||||
|
met:
|
||||||
|
- link:
|
||||||
|
~/.config/:
|
||||||
|
glob: true
|
||||||
|
force: true
|
||||||
|
path: hosts/v/config/**
|
||||||
|
- go:
|
||||||
|
- github.com/skx/sysbox@latest
|
||||||
|
|
||||||
|
# hosts: lakka
|
||||||
|
- if:
|
||||||
|
- cond: '[[ $(hostname) = lakka ]]'
|
||||||
met:
|
met:
|
||||||
- shell:
|
|
||||||
- echo "host is lakka"
|
|
||||||
- link:
|
- link:
|
||||||
~/.irssi/*:
|
~/.irssi/*:
|
||||||
force: true
|
force: true
|
||||||
glob: true
|
glob: true
|
||||||
path: host-lakka/irssi/**
|
path: hosts/lakka/irssi/**
|
||||||
~/.zshrc*:
|
~/.zshrc*:
|
||||||
force: true
|
force: true
|
||||||
path: host-lakka/zshrc
|
path: hosts/lakka/zshrc
|
||||||
- cond: "command -v npm"
|
|
||||||
met:
|
|
||||||
- shell:
|
|
||||||
- echo "we have npm"
|
|
||||||
- ["$HOME/.dotfiles/scripts/install-npm-packages.sh", Installing npm packages]
|
|
||||||
|
|
||||||
# GitHub CLI Extensions
|
# GitHub CLI Extensions
|
||||||
- ghe:
|
- ghe:
|
||||||
|
# GitHub CLI extension for generating a report on repository dependencies.
|
||||||
- andyfeller/gh-dependency-report
|
- andyfeller/gh-dependency-report
|
||||||
|
# GitHub CLI extension to generate montage from GitHub user avatars
|
||||||
- andyfeller/gh-montage
|
- andyfeller/gh-montage
|
||||||
|
# An opinionated GitHub Cli extension for creating
|
||||||
|
# changelogs that adhere to the keep a changelog specification.
|
||||||
- chelnak/gh-changelog
|
- chelnak/gh-changelog
|
||||||
|
# Safely deletes local branches with no upstream and no un-pushed commits
|
||||||
- davidraviv/gh-clean-branches
|
- davidraviv/gh-clean-branches
|
||||||
|
# A beautiful CLI dashboard for GitHub 🚀
|
||||||
- dlvhdr/gh-dash
|
- dlvhdr/gh-dash
|
||||||
|
# GitHub CLI extension for reviewing Dependabot PRs.
|
||||||
- einride/gh-dependabot
|
- einride/gh-dependabot
|
||||||
|
# A GitHub CLI extension that provides summary pull request metrics.
|
||||||
- hectcastro/gh-metrics
|
- hectcastro/gh-metrics
|
||||||
|
# A github-cli extension script to clone all repositories
|
||||||
|
# in an organization, optionally filtering by topic.
|
||||||
- matt-bartel/gh-clone-org
|
- matt-bartel/gh-clone-org
|
||||||
|
# being an extension to view the overall health of an organization's use of actions
|
||||||
- rsese/gh-actions-status
|
- rsese/gh-actions-status
|
||||||
- samcoe/gh-triage
|
- samcoe/gh-triage
|
||||||
|
# Generate account/organization/enterprise reports
|
||||||
- stoe/gh-report
|
- stoe/gh-report
|
||||||
|
# Organisation specific extension for gh cli to retrieve different statistics
|
||||||
- VildMedPap/gh-orgstats
|
- VildMedPap/gh-orgstats
|
||||||
- vilmibm/gh-screensaver
|
- vilmibm/gh-screensaver
|
||||||
- vilmibm/gh-user-status
|
- vilmibm/gh-user-status
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
: "${DOTFILES:=$HOME/.dotfiles}"
|
: "${DOTFILES:=$HOME/.dotfiles}"
|
||||||
: "${INSTALL_SCRIPT:=$DOTFILES/scripts/install-dotfiles.sh}"
|
: "${INSTALL_SCRIPT:=$DOTFILES/scripts/install-dotfiles.sh}"
|
||||||
: "${BREWFILE:=$DOTFILES/Brewfile}"
|
: "${BREWFILE:=$DOTFILES/Brewfile}"
|
||||||
|
: "${HOSTFILES:=$DOTFILES/hosts}"
|
||||||
|
|
||||||
SCRIPT=$(basename "$0")
|
SCRIPT=$(basename "$0")
|
||||||
|
|
||||||
@@ -26,7 +27,7 @@ function section_install
|
|||||||
$0 install antigen
|
$0 install antigen
|
||||||
$0 install starship
|
$0 install starship
|
||||||
$0 install macos
|
$0 install macos
|
||||||
$0 install ext_npm
|
$0 install npm
|
||||||
;;
|
;;
|
||||||
antigen)
|
antigen)
|
||||||
curl -L git.io/antigen > "$DOTFILES/local/bin/antigen.zsh" && msg_done "🎉 New antigen installed!"
|
curl -L git.io/antigen > "$DOTFILES/local/bin/antigen.zsh" && msg_done "🎉 New antigen installed!"
|
||||||
@@ -37,18 +38,18 @@ function section_install
|
|||||||
macos)
|
macos)
|
||||||
bash "$DOTFILES/scripts/set-macos-defaults.sh" && msg_done "🎉 Brewfile defined apps has been installed!"
|
bash "$DOTFILES/scripts/set-macos-defaults.sh" && msg_done "🎉 Brewfile defined apps has been installed!"
|
||||||
;;
|
;;
|
||||||
ext_npm)
|
npm)
|
||||||
bash "$DOTFILES/scripts/install-npm-packages.sh" && msg_done "NPM Packages have been installed!"
|
bash "$DOTFILES/scripts/install-npm-packages.sh" && msg_done "NPM Packages have been installed!"
|
||||||
;;
|
;;
|
||||||
settler)
|
settler)
|
||||||
bash "$DOTFILES/scripts/settler.sh" && msg_done "🎉 Settler has been run!"
|
bash "$DOTFILES/scripts/settler.sh" && msg_done "🎉 Settler has been run!"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
menu_section "$USAGE_PREFIX" "all | antigen | starship | ext_npm | macos | settler"
|
menu_section "$USAGE_PREFIX" "all | antigen | starship | npm | macos | settler"
|
||||||
menu_item "all" "Installs antigen, macos, brew and ext_gh"
|
menu_item "all" "Installs antigen, macos, brew and ext_gh"
|
||||||
menu_item "antigen" "Updates the antigen.zsh file"
|
menu_item "antigen" "Updates the antigen.zsh file"
|
||||||
menu_item "starship" "Install starship.rs"
|
menu_item "starship" "Install starship.rs"
|
||||||
menu_item "ext_npm" "Install NPM Packages"
|
menu_item "npm" "Install NPM Packages"
|
||||||
menu_item "macos" "Setup nice macOS defaults"
|
menu_item "macos" "Setup nice macOS defaults"
|
||||||
menu_item "settler" "Runs the WIP settler.sh"
|
menu_item "settler" "Runs the WIP settler.sh"
|
||||||
;;
|
;;
|
||||||
@@ -112,7 +113,7 @@ function section_dotfiles
|
|||||||
ln -s ~/.dotfiles/config/astronvim ~/.config/astronvim
|
ln -s ~/.dotfiles/config/astronvim ~/.config/astronvim
|
||||||
ln -s ~/.dotfiles/config/nvim ~/.config/nvim
|
ln -s ~/.dotfiles/config/nvim ~/.config/nvim
|
||||||
msg_ok "Linked nvim and astronvim"
|
msg_ok "Linked nvim and astronvim"
|
||||||
hash npm 2>/dev/null && $0 install ext_npm
|
hash npm 2>/dev/null && $0 install npm
|
||||||
msg_ok "Installed packages"
|
msg_ok "Installed packages"
|
||||||
msg_done "...and we are done!"
|
msg_done "...and we are done!"
|
||||||
;;
|
;;
|
||||||
@@ -132,6 +133,29 @@ function section_dotfiles
|
|||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function section_check
|
||||||
|
{
|
||||||
|
USAGE_PREFIX="$SCRIPT check"
|
||||||
|
X_HOSTNAME=$(hostname)
|
||||||
|
X_ARCH=$(uname)
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
a|arch)
|
||||||
|
[[ "$2" = "" ]] && echo "$X_ARCH" && exit 0
|
||||||
|
[[ $X_ARCH = "$2" ]] && exit 0 || exit 1
|
||||||
|
;;
|
||||||
|
h|host|hostname)
|
||||||
|
[[ "$2" = "" ]] && echo "$X_HOSTNAME" && exit 0
|
||||||
|
[[ $X_HOSTNAME = "$2" ]] && exit 0 || exit 1
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
menu_section "$USAGE_PREFIX" "arch | host"
|
||||||
|
menu_item "arch <arch>" "Empty returns current. Exit code 0 when match, 1 when not."
|
||||||
|
menu_item "host <host>" "Empty returns current. Exit code 0 when match, 1 when not."
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
# Secret menu for visual tests
|
# Secret menu for visual tests
|
||||||
function section_tests
|
function section_tests
|
||||||
{
|
{
|
||||||
@@ -160,13 +184,15 @@ function section_tests
|
|||||||
function usage
|
function usage
|
||||||
{
|
{
|
||||||
echo ""
|
echo ""
|
||||||
menu_section "Usage: $SCRIPT" "install | reset | brew | dotfiles"
|
menu_section "Usage: $SCRIPT" "install | reset | brew | check | dotfiles"
|
||||||
echo $" All commands have their own subcommands."
|
echo $" All commands have their own subcommands."
|
||||||
echo ""
|
echo ""
|
||||||
section_install
|
section_install
|
||||||
echo ""
|
echo ""
|
||||||
section_brew
|
section_brew
|
||||||
echo ""
|
echo ""
|
||||||
|
section_check
|
||||||
|
echo ""
|
||||||
section_dotfiles
|
section_dotfiles
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -174,6 +200,7 @@ function usage
|
|||||||
case "$1" in
|
case "$1" in
|
||||||
install) section_install "$2" ;;
|
install) section_install "$2" ;;
|
||||||
brew) section_brew "$2" ;;
|
brew) section_brew "$2" ;;
|
||||||
|
check) section_check "$2" ;;
|
||||||
dotfiles) section_dotfiles "$2" ;;
|
dotfiles) section_dotfiles "$2" ;;
|
||||||
tests) section_tests "$2" ;;
|
tests) section_tests "$2" ;;
|
||||||
*) usage && exit 0 ;;
|
*) usage && exit 0 ;;
|
||||||
|
|||||||
@@ -1,53 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
# Install GitHub CLI extensions
|
|
||||||
#
|
|
||||||
# shellcheck source="shared.sh"
|
|
||||||
source "$HOME/.dotfiles/scripts/shared.sh"
|
|
||||||
|
|
||||||
if ! command -v gh &> /dev/null; then
|
|
||||||
msg_run "gh (GitHub Client) could not be found, please install it first"
|
|
||||||
else
|
|
||||||
extensions=(
|
|
||||||
# GitHub CLI extension for reviewing Dependabot PRs.
|
|
||||||
einride/gh-dependabot
|
|
||||||
# A GitHub CLI extension that provides summary pull request metrics.
|
|
||||||
hectcastro/gh-metrics
|
|
||||||
# being an extension to view the overall health of an organization's use of actions
|
|
||||||
rsese/gh-actions-status
|
|
||||||
# GitHub CLI extension for label management
|
|
||||||
heaths/gh-label
|
|
||||||
# An opinionated GitHub Cli extension for creating
|
|
||||||
# changelogs that adhere to the keep a changelog specification.
|
|
||||||
chelnak/gh-changelog
|
|
||||||
# Safely deletes local branches with no upstream and no un-pushed commits
|
|
||||||
davidraviv/gh-clean-branches
|
|
||||||
# A beautiful CLI dashboard for GitHub 🚀
|
|
||||||
dlvhdr/gh-dash
|
|
||||||
# A github-cli extension script to clone all repositories
|
|
||||||
# in an organization, optionally filtering by topic.
|
|
||||||
matt-bartel/gh-clone-org
|
|
||||||
# GitHub CLI extension to generate montage from GitHub user avatars
|
|
||||||
andyfeller/gh-montage
|
|
||||||
# Organisation specific extension for gh cli to retrieve different statistics
|
|
||||||
VildMedPap/gh-orgstats
|
|
||||||
# GitHub CLI extension for generating a report on repository dependencies.
|
|
||||||
andyfeller/gh-dependency-report
|
|
||||||
# gh cli extension to generate account/organization/enterprise reports
|
|
||||||
stoe/gh-report
|
|
||||||
)
|
|
||||||
|
|
||||||
msg "Starting to install GitHub CLI extensions..."
|
|
||||||
|
|
||||||
for ext in "${extensions[@]}"; do
|
|
||||||
# Trim spaces
|
|
||||||
ext=${ext// /}
|
|
||||||
# Skip comments
|
|
||||||
if [[ ${ext:0:1} == "#" ]]; then continue; fi
|
|
||||||
|
|
||||||
msg_run "Installing $ext"
|
|
||||||
gh extensions install "$ext"
|
|
||||||
echo ""
|
|
||||||
done
|
|
||||||
|
|
||||||
msg_ok "Done"
|
|
||||||
fi
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#
|
#
|
||||||
# Settler - my macOS setup automator
|
# Install XCode CLI Tools with osascript magic.
|
||||||
# Ismo Vuorinen <https://github.com/ivuorinen> 2018
|
# Ismo Vuorinen <https://github.com/ivuorinen> 2018
|
||||||
#
|
#
|
||||||
|
|
||||||
Reference in New Issue
Block a user