install scripts. reorganization. soon to be deployable

This commit is contained in:
2025-05-24 04:08:28 -05:00
parent 5010e57533
commit e966d5328d
242 changed files with 407 additions and 45 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
newsboat_loop(){
newsboat -x reload
#newsboat -x print-unread | xargs -0 notify-send "newsboat feed"
unreads=$(newsboat -x print-unread)
unreadnum=$(printf "$unreads" | sed 's/ .*//g')
if (( $unreadnum > 0 )); then
notify-send "newsboat feed" "$unreads"
fi
notify-send "Vitamins!" "take them"
sleep 2h
newsboat_loop
}
newsboat_loop