Skip to content

Commit

Permalink
Visual code updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackjacx committed Nov 13, 2023
1 parent 0f1bd69 commit e72ee4d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions bootstrap/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ configureSystem() {
# Restart all affected apps
#
for app in Safari Finder Dock Mail SystemUIServer iterm2; do
killall -HUP "$app" >/dev/null 2>&1;
killall -HUP "$app" > /dev/null 2>&1;
done

elif [[ $(uname) == "Linux" ]]; then
Expand All @@ -231,7 +231,7 @@ configureSoftware() {
printf "Configure Sotware\n"
printf "#################################################################\n\n"

command -v bat >/dev/null 2>&1 && {
command -v bat > /dev/null 2>&1 && {
printf "Install Catppuccin for Bat\n"

tmp=$(mktemp -d)
Expand Down Expand Up @@ -262,7 +262,7 @@ installSoftware() {
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
fi

command -v brew >/dev/null 2>&1 || {
command -v brew > /dev/null 2>&1 || {
printf "\n#################################################################\n"
printf "Installing Homebrew\n"
printf "#################################################################\n\n"
Expand Down
6 changes: 3 additions & 3 deletions bootstrap/dotfiles/.tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ bind c new-window -c "#{pane_current_path}"
# neww -d
# neww -d

#
# PLUGINS
#
#-------------------------------------------------------------------------------
# Plugins
#-------------------------------------------------------------------------------

# Source & run tpm package
set -g @plugin 'tmux-plugins/tpm'
Expand Down

0 comments on commit e72ee4d

Please sign in to comment.