summaryrefslogtreecommitdiff
path: root/configs/lxde-openrc/airootfs/etc/NetworkManager/dispatcher.d/reflector
blob: 76e84dd9f5e2ee7da641a0b83c7ce9e034fdd7a1 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

if [ "$2" == up ] && ! grep -qoP 'mirror=\K\S+' /proc/cmdline; then
  reflector \
    --save /etc/pacman.d/mirrorlist \
    --protocol https \
    --latest 20 \
    --sort rate
fi