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
13 changes: 13 additions & 0 deletions generic/install-tmux-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-tmux-catppuccin-theme)

mkdir -p ~/.config/tmux/plugins/catppuccin
if git clone -b v2.1.3 https://github.com/catppuccin/tmux.git ~/.config/tmux/plugins/catppuccin/tmux; then
echo "Catppuccin theme for tmux has been installed."
echo "To apply the theme, add the following line to your .tmux.conf file:"
echo "run ~/.config/tmux/plugins/catppuccin/tmux/catppuccin.tmux"
else
echo "Error: Failed to clone Catppuccin tmux theme repository." >&2
# If sourced, return non-zero; if executed directly, exit non-zero.
return 1 2>/dev/null || exit 1
fi
3 changes: 3 additions & 0 deletions ubuntu/install-essential-packages
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,6 @@ if [ -n "$MDVIEW_DEB_URL" ]; then
else
echo "mdview: unable to determine latest .deb URL" >&2
fi

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