all repos

dotfiles @ 2631b4a

i use rach linux btw
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
        1
         #!/usr/bin/env bash

      
        
        2
        +# shellcheck disable=SC2046

      
        
        3
        +

      
        2
        4
         sudo pacman -Syu --noconfirm

      
        3
        5
         paru -Sua --noconfirm

      
        4
        6
         sudo pacman -Rns $(pacman -Qdtq) --noconfirm

      
M bin/watchsync
···
        1
        1
         #!/usr/bin/env bash

      
        
        2
        +# shellcheck disable=SC2016

      
        2
        3
         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'