diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2018-09-29 16:02:40 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2018-09-29 16:02:40 -0400 |
| commit | 13b6ab3dc2f1a2c100b26af963b495a9e563e5c2 (patch) | |
| tree | 9f52c4cabe59fe8ccaa53ff5601846e9589351fc | |
| parent | 30f8c087c54c09b69a88eed53e45b48d50104ffd (diff) | |
| download | eibhear-13b6ab3dc2f1a2c100b26af963b495a9e563e5c2.tar.gz eibhear-13b6ab3dc2f1a2c100b26af963b495a9e563e5c2.tar.zst eibhear-13b6ab3dc2f1a2c100b26af963b495a9e563e5c2.zip | |
cron-able newsboat update script added for i3blocks
| -rw-r--r-- | .config/i3blocks/config | 5 | ||||
| -rwxr-xr-x | .scripts/newsup | 9 |
2 files changed, 14 insertions, 0 deletions
diff --git a/.config/i3blocks/config b/.config/i3blocks/config index e7af9e2..9916f96 100644 --- a/.config/i3blocks/config +++ b/.config/i3blocks/config @@ -2,6 +2,11 @@ command=/usr/lib/i3blocks/$BLOCK_NAME separator_block_width=15 markup=pango +[news] +command=cat ~/.newsup +interval=once +signal=6 + [record] command=cat ~/.recordingicon interval=once diff --git a/.scripts/newsup b/.scripts/newsup new file mode 100755 index 0000000..986524a --- /dev/null +++ b/.scripts/newsup @@ -0,0 +1,9 @@ +#!/bin/sh + +echo "📰 🔃" > ~/.newsup +pkill -RTMIN+6 i3blocks +printf "Loading new RSS entries for newsboat...\\n" +/usr/bin/newsboat -x reload && + printf "Done.\\n" +echo "" > ~/.newsup +pkill -RTMIN+6 i3blocks |
