Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions debian/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ then
then
source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/debian/install-makemkv)
fi

# Install Ghostty catppuccin theme
source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/generic/install-ghostty-catppuccin-theme)
fi

# Zsh customizations
Expand Down
13 changes: 13 additions & 0 deletions generic/install-ghostty-catppuccin-theme
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
# source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/generic/install-ghostty-catppuccin-theme)

GHOSTTY_THEMES_DIR="$HOME/.config/ghostty/themes"

if [[ -f "$GHOSTTY_THEMES_DIR/catppuccin-mocha" ]]; then
echo "Catppuccin theme for ghostty is already installed, skipping."
else
mkdir -p "$GHOSTTY_THEMES_DIR"
curl -fsSL "https://raw.githubusercontent.com/catppuccin/ghostty/main/themes/catppuccin-mocha" \
-o "$GHOSTTY_THEMES_DIR/catppuccin-mocha"
echo "Catppuccin mocha theme for ghostty installed."
fi
3 changes: 3 additions & 0 deletions ubuntu/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/ubuntu/install-desktop-packages)

# Install Ghostty catppuccin theme
source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/generic/install-ghostty-catppuccin-theme)
fi

# Install media CLI tools
Expand Down
Loading