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
2 changes: 2 additions & 0 deletions debian/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ read -r REPLY </dev/tty
if [[ $REPLY =~ ^[Yy]$ ]]
then
source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/debian/install-dev-packages)
source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/generic/install-claude-code)
source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/generic/install-rtk)
fi

# Install eza themes
Expand Down
8 changes: 8 additions & 0 deletions generic/install-claude-code
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/generic/install-claude-code)

if command -v claude >/dev/null 2>&1; then
echo "Claude Code is already installed, skipping."
else
curl -fsSL https://claude.ai/install.sh | bash
fi
8 changes: 8 additions & 0 deletions generic/install-rtk
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/generic/install-rtk)

if command -v rtk >/dev/null 2>&1; then
echo "rtk is already installed, skipping."
else
curl -fsSL https://raw.githubusercontent.com/rtk-ai/rtk/refs/heads/master/install.sh | sh
fi
Loading