Skip to content

Commit

Permalink
Symlink: Add missing directory creation for ghostty config
Browse files Browse the repository at this point in the history
This resulted in an error if the ~/.config/ghostty folder was missing
initially.
  • Loading branch information
erikjuhani committed Jan 9, 2025
1 parent cbb7c49 commit ad402e7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/environment/symlink.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ ln -s "$BASE_PATH/.config/fish/config.fish" "$HOME/.config/fish/config.fish"
rm -f "$HOME/.alacritty.toml"
ln -s "$BASE_PATH/.alacritty.toml" "$HOME/.alacritty.toml"

# create ghostty .config directory
mkdir -p "$HOME/.config/ghostty"

# ghostty
rm -f "$HOME/.config/ghostty/config"
ln -s "$BASE_PATH/.config/ghostty/config" "$HOME/.config/ghostty/config"
Expand Down

0 comments on commit ad402e7

Please sign in to comment.