From 4035af56c8478362a6c1bb08e7bf542d1ed6cd7b Mon Sep 17 00:00:00 2001 From: Raine Date: Sat, 14 Oct 2023 22:38:15 +0200 Subject: [PATCH] feat: remove fastfetch --- crates/10-zsh/crate.sh | 11 ----------- crates/10-zsh/files/.zshrc | 3 --- 2 files changed, 14 deletions(-) diff --git a/crates/10-zsh/crate.sh b/crates/10-zsh/crate.sh index c67edb8..2c06c84 100644 --- a/crates/10-zsh/crate.sh +++ b/crates/10-zsh/crate.sh @@ -4,17 +4,6 @@ describe="Install zsh and oh-my-zsh!" scripts="@distro @self" super_apply() { - [ -d /tmp/fastfetch ] || git clone https://github.com/LinusDierheimer/fastfetch /tmp/fastfetch - - if ! command -v fastfetch &> /dev/null; then - cd /tmp/fastfetch - mkdir -p build - cd build - cmake .. - cmake --build . --target fastfetch - mv fastfetch /usr/local/bin/fastfetch - fi - usermod $USER --shell /bin/zsh } diff --git a/crates/10-zsh/files/.zshrc b/crates/10-zsh/files/.zshrc index c75277d..6f027bf 100644 --- a/crates/10-zsh/files/.zshrc +++ b/crates/10-zsh/files/.zshrc @@ -23,7 +23,4 @@ update_dotfiles() { } alias udf="update_dotfiles" -# COSMETICS -fastfetch - export PATH="${PATH}:/home/${USER}/.local/bin"