diff --git a/debian/bootstrap b/debian/bootstrap index f708f24..8096a37 100755 --- a/debian/bootstrap +++ b/debian/bootstrap @@ -19,6 +19,9 @@ source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/m # Install packages source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/debian/install-packages) +# Install eza themes +source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/generic/install-eza-themes) + # Desktop packages read -p "Install desktop apps? " -n 1 -r echo diff --git a/debian/install-packages b/debian/install-packages index 06d653a..97fb1ee 100755 --- a/debian/install-packages +++ b/debian/install-packages @@ -20,6 +20,7 @@ ffmpeg \ fzf \ gh \ git \ +git-extras \ gpg \ lazygit \ libfuse2 \ @@ -34,6 +35,7 @@ pwgen \ ranger \ rclone \ renameutils \ +starship \ tmux \ wget \ yadm \ diff --git a/generic/install-eza-themes b/generic/install-eza-themes new file mode 100755 index 0000000..3a7f502 --- /dev/null +++ b/generic/install-eza-themes @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +# source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/generic/install-eza-themes) + +git clone https://github.com/eza-community/eza-themes.git ~/.local/share/eza-themes +mkdir -p ~/.config/eza +ln -sf "$HOME/.local/share/eza-themes/themes/catppuccin-mocha.yml" ~/.config/eza/theme.yml \ No newline at end of file diff --git a/generic/install-tmux-catppuccin-theme b/generic/install-tmux-catppuccin-theme old mode 100644 new mode 100755