all repos

dotfiles @ 2631b4accf41559461b668001f2602e31a0b9e62

my dotfiles
2 files changed, 3 insertions(+), 0 deletions(-)
bin: make shellcheck happy about my scripts
Author: Olexandr Smirnov olexsmir@gmail.com
Committed at: 2025-07-30 18:59:39 +0300
Parent: fe22aa5
M bin/arch-upd

@@ -1,4 +1,6 @@

#!/usr/bin/env bash +# shellcheck disable=SC2046 + sudo pacman -Syu --noconfirm paru -Sua --noconfirm sudo pacman -Rns $(pacman -Qdtq) --noconfirm
M bin/watchsync

@@ -1,2 +1,3 @@

#!/usr/bin/env bash +# shellcheck disable=SC2016 watch -n1 'grep -E "(Dirty|Write)" /proc/meminfo; echo; ls /sys/block/ | while read -r device; do awk "{ print \"$device: \" \$9 }" "/sys/block/$device/stat"; done'