diff --git a/README.md b/README.md index ae7178e..c34d70c 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ This is just a bunch of dotfiles. # Base utils pacman -S bat duf eza htop inetutils kitty-terminfo neovim openssh ripgrep tmux transmission-cli tree wget whois zsh zsh-syntax-highlighting pacman -S shared-mime-info xdg-user-dirs +pacman -S reflector pacman -S skim # Rust pacman -S cargo-audit cargo-outdated cargo-release rustup diff --git a/bin/update_mirrorlist b/bin/update_mirrorlist deleted file mode 100755 index 94325f0..0000000 --- a/bin/update_mirrorlist +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env bash - -set -euo pipefail -IFS=$'\n\t' - -pacman_dir="/etc/pacman.d" -mirror_file="${pacman_dir}/mirrorlist" -mirror_pacnew="${mirror_file}.pacnew" -mirror_orig="${mirror_file}.orig" -mirror_tmp="/tmp/mirrorlist.tmp" -rank_util="rankmirrors" - -if ! hash "$rank_util" 2>/dev/null; then - echo "$rank_util: command not found" >&2 - echo "You may need to install the 'pacman-contrib' package." >&2 - exit 1 -fi - -if [ -f "$mirror_pacnew" ]; then - echo "Using $mirror_pacnew" - mv "$mirror_pacnew" "$mirror_orig" -fi - -if [ ! -f "$mirror_orig" ]; then - echo "$mirror_orig: file not found" >&2 - exit 1 -fi - -awk '/^## France$/{f=1}f==0{next}/^$/{exit}{print substr($0, 2)}' "$mirror_orig" >"$mirror_tmp" -"$rank_util" -n 6 "$mirror_tmp" >"$mirror_file" -rm -f "$mirror_tmp" -pacman -Syy