diff options
author | Himbeer <himbeer@disroot.org> | 2024-06-02 22:18:46 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-06-02 22:18:46 +0200 |
commit | 9be4fb2121e79aba717054a03a15f9f7284dc576 (patch) | |
tree | b7181821799bfa2cc3aa109d88c4c2649d0348e9 | |
parent | 0a6c8d91875f7aa1a00c999d8039b036228984bc (diff) |
Minimize shell utilities
Remove neofetch and fortune output when starting a shell and reconsider list of other installed command-line tools.
-rw-r--r-- | himbeer.zsh | 4 | ||||
-rwxr-xr-x | shell_only.sh | 20 |
2 files changed, 5 insertions, 19 deletions
diff --git a/himbeer.zsh b/himbeer.zsh index 8ffa25d..7ba0a8d 100644 --- a/himbeer.zsh +++ b/himbeer.zsh @@ -180,7 +180,3 @@ setprompt autoload -U add-zsh-hook add-zsh-hook precmd theme_precmd add-zsh-hook preexec theme_preexec - -fortune | cowsay | lolcat -echo -neofetch diff --git a/shell_only.sh b/shell_only.sh index 775113e..c2d8f18 100755 --- a/shell_only.sh +++ b/shell_only.sh @@ -48,16 +48,13 @@ if command_exists pacman; then ${SUDO} pacman -Sy --noconfirm --needed \ bat \ - cowsay \ - fortune-mod \ zsh \ git \ - figlet \ curl \ wget \ + bc \ tmux \ vim \ - neofetch \ fzf \ openssh \ ripgrep \ @@ -72,7 +69,7 @@ if command_exists pacman; then m4 \ rustup \ gping \ - bottom + htop rustup default stable @@ -87,32 +84,25 @@ Sudo = $(which ${SUDO}) EOT paru -S --noconfirm --needed \ - c-lolcat \ - tty-clock-git \ insect elif command_exists apt; then ${SUDO} apt update ${SUDO} apt install -y \ bat \ - lolcat \ - cowsay \ - fortune \ zsh \ git \ - figlet \ curl \ wget \ - tty-clock \ bc \ units \ tmux \ vim \ - neofetch \ fzf \ openssh-client \ - rust-all + rust-all \ + htop - cargo install cargo-update gping bottom + cargo install cargo-update gping else echo "Your distro is not supported." exit 1 |