Skip to content

Commit

Permalink
feat: add custom fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
YasminTeles committed Oct 28, 2024
1 parent 7b586b5 commit 7596100
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: help check_clean del ssh backup github gh-dash gh-login colima check-scripts macos
.PHONY: help check_clean del ssh backup github gh-dash gh-login colima check-scripts macos fonts

help: ## Show help.
@printf "A set of environment management commands.\n"
Expand All @@ -12,7 +12,7 @@ check_clean:

del: check_clean ## Delete your development environment.
@echo "Deleting all dotfiles, applications, and folders..."
@stow --dotfiles -D git ssh brew zsh gh-dash
@stow --dotfiles -D git ssh brew zsh gh-dash fonts
@rm -rf ~/Projects
@rm -rf ~/.ssh/id_ed25519 ~/.ssh/id_ed25519.pub
@rm -rf ~/.oh-my-zsh
Expand Down Expand Up @@ -54,3 +54,6 @@ check-scripts: ## Check the shell script.
macos: ## Setting up MacOS
@sh ~/.dotfiles/iterm/settings.sh
@sh ~/.dotfiles/macos/defaults.sh

fonts: ## Setting up custom fonts.
@stow -t ~/Library/Fonts fonts
Binary file added fonts/LigaMenlo-Regular.ttf
Binary file not shown.
7 changes: 6 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -e

# Print a step description
TOTAL_STEPS=12
TOTAL_STEPS=13
STEP=1
function step_msg {
printf "\033[36;1m[%s/%s] %s...\033[0m\n" "$STEP" "$TOTAL_STEPS" "$1";
Expand Down Expand Up @@ -117,6 +117,11 @@ step_msg "Setting up the macos"

sh ~/.dotfiles/macos/defaults.sh

# -- Set up fonts --------------------------------------------------------------
step_msg "Setting up the custom fonts"

cd ~/.dotfiles && stow -t ~/Library/Fonts fonts

# -- Git -----------------------------------------------------------------------
step_msg "Configuring Git"

Expand Down

0 comments on commit 7596100

Please sign in to comment.