Skip to content

Commit

Permalink
fzf
Browse files Browse the repository at this point in the history
  • Loading branch information
sabrehagen committed Oct 9, 2024
1 parent d273442 commit 15e780c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ RUN apt-get update -qq && \
figlet \
fonts-font-awesome \
fonts-noto-color-emoji \
fzf \
g++ \
gcc \
gimp \
Expand Down Expand Up @@ -188,9 +187,6 @@ RUN wget -qnv -O beekeeper-studio.deb https://github.com/beekeeper-studio/beekee
dpkg -i beekeeper-studio.deb && \
rm beekeeper-studio.deb

# Install bluetuith
RUN go install github.com/darkhz/bluetuith@latest

# Install bottom
RUN wget -qnv -O bottom.deb https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2-1_amd64.deb && \
dpkg -i bottom.deb && \
Expand Down Expand Up @@ -234,7 +230,8 @@ RUN apt-get update -qq && \
make WAYLAND=0 install

# Install eza
RUN cargo install --git https://github.com/eza-community/eza
RUN curl -fsSL https://github.com/eza-community/eza/releases/download/v0.20.2/eza_x86_64-unknown-linux-gnu.tar.gz | \
tar -C /usr/local/bin -xzf - eza

# Install fastfetch
RUN git clone https://github.com/fastfetch-cli/fastfetch /opt/fastfetch && \
Expand All @@ -245,6 +242,10 @@ RUN git clone https://github.com/fastfetch-cli/fastfetch /opt/fastfetch && \
cmake --build . --target fastfetch --target flashfetch && \
install fastfetch /usr/local/bin

# Install fzf
RUN curl -fsSL https://github.com/junegunn/fzf/releases/download/v0.55.0/fzf-0.55.0-linux_amd64.tar.gz | \
tar -C /usr/local/bin -xzf - fzf

# Install gh
RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg && \
chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg && \
Expand All @@ -257,7 +258,7 @@ RUN git clone --depth 1 https://github.com/xxxserxxx/gotop /opt/gotop && \
cd /opt/gotop && \
VERSION="$(git tag -l --sort=-v:refname | sed 's/v\([^-].*\)/\1/g' | head -1 | tr -d '-' ).$(git describe --long --tags | sed 's/\([^-].*\)-\([0-9]*\)-\(g.*\)/r\2.\3/g' | tr -d '-')" && \
DATE=$(date +%Y%m%dT%H%M%S) && \
go build -o gotop -ldflags "-X main.Version=v${VERSION} -X main.BuildDate=${DATE}" ./cmd/gotop && \
go build -o gotop -ldflags "-X main.Version=v$VERSION -X main.BuildDate=$DATE" ./cmd/gotop && \
install gotop /usr/local/bin

# Install gping
Expand Down

0 comments on commit 15e780c

Please sign in to comment.