mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-02 21:23:22 +01:00
0f7f51e81c
This commit adds sudo where needed for the majority of pacman commands. It also removes zsh, urxvt, and renpy since we don't use those anymore.
35 lines
1.2 KiB
Bash
35 lines
1.2 KiB
Bash
#!/bin/sh
|
|
#
|
|
# This script installs an assortment of common CLI tools that I use
|
|
# regularly enough to warrant inclusion.
|
|
#
|
|
# Note that you could also install `lolcat` if you really wanted to.
|
|
#
|
|
# https://github.com/junegunn/fzf
|
|
# https://github.com/sharkdp/fd
|
|
# https://github.com/BurntSushi/ripgrep
|
|
# https://github.com/jakubroztocil/httpie
|
|
# https://github.com/ogham/exa
|
|
# https://github.com/stedolan/jq
|
|
# https://github.com/borgbackup/borg
|
|
# https://github.com/rg3/youtube-dl
|
|
|
|
set -xe
|
|
|
|
sudo pacman -S jq # JSON manipulation
|
|
sudo pacman -S ripgrep # Faster than ag / ack / grep
|
|
sudo pacman -S fzf # Fuzzy find anything
|
|
sudo pacman -S httpie # Make HTTP requests
|
|
sudo pacman -S fd # Faster alternative to find
|
|
sudo pacman -S exa # Drop-in replacement for ls and tree
|
|
|
|
sudo pacman -S fdupes # Find duplicate files
|
|
sudo pacman -S bind-tools # DNS tools like dig
|
|
|
|
sudo pacman -S ncdu # Ncurses du (disk usage)
|
|
sudo pacman -S borg # Backup directories
|
|
sudo pacman -S youtube-dl # View online videos in mpv
|
|
sudo pacman -S neofetch # Bragging rights
|
|
|
|
sudo pacman -S pygmentize # Command line syntax highlighting (used for 'dog')
|