diff options
Diffstat (limited to '')
-rw-r--r-- | .config/newsboat/config | 44 | ||||
-rwxr-xr-x | .local/bin/nb | 1 | ||||
-rwxr-xr-x | .local/bin/ref-newsboat | 24 |
3 files changed, 37 insertions, 32 deletions
diff --git a/.config/newsboat/config b/.config/newsboat/config index 6b0e1aa..e7404f6 100644 --- a/.config/newsboat/config +++ b/.config/newsboat/config @@ -1,7 +1,7 @@ #how-read-feeds no auto-reload yes refresh-on-startup yes -reload-time 60 +reload-time 1 confirm-mark-all-feeds-read yes confirm-mark-feed-read no reload-threads 100 @@ -9,7 +9,10 @@ text-width 80 show-keymap-hint no show-title-bar no swap-title-and-hints no -notify-program "/usr/bin/notify-send" +#notify-program /home/r_bousset/n.sh +notify-program "notify-send -u low -t 4000 newsboat" +notify-always yes +notify-format " <b>%d</b> new articles" external-url-viewer "urlview" @@ -46,9 +49,9 @@ bind-key ^t next-unread # color article default default color background default default -color listnormal white default +color listnormal default default dim color listnormal_unread red default bold -color listfocus white black +color listfocus default black dim color listfocus_unread red black bold color info yellow black bold color article default default @@ -64,7 +67,7 @@ macro w set browser "linkview"; open-in-browser ; set browser linkhandler datetime-format "%D" articlelist-format "%D %t" -feedlist-format "%?T? %n %9u %t [%T]&#%-7t----------------------------------------------------------?" +feedlist-format "%?T?%n%9u %t [%T]&#%-8t----------------------------------------------------------?" highlight article "(^Feed:.*|^Title:.*|^Author:.*)" cyan default bold highlight article "(^Link:.*|^Date:.*)" default default @@ -79,19 +82,20 @@ highlight article ":.*\\(embedded flash\\)$" magenta default highlight feedlist ".*(0/0))" black -highlight feedlist ".* \\[(news|tech|normies|gaming|space|skate|music)\\]$" white default -highlight feedlist "^ N.* \\[news\\]$" blue default bold -highlight feedlist "^ N.* \\[tech\\]$" cyan default bold -highlight feedlist "^ N.* \\[normies\\]$" red default bold -highlight feedlist "^ N.* \\[gaming\\]$" yellow default bold -highlight feedlist "^ N.* \\[space\\]$" blue default bold -highlight feedlist "^ N.* \\[skate\\]$" magenta default bold -highlight feedlist "^ N.* \\[music\\]$" green default bold -highlight feedlist "^#news .*" blue default -highlight feedlist "^#tech .*" cyan default -highlight feedlist "^#normies .*" red default -highlight feedlist "^#gaming .*" yellow default -highlight feedlist "^#space .*" blue default -highlight feedlist "^#skate .*" magenta default -highlight feedlist "^#music .*" green default +highlight feedlist ".* \\[(news|tech|normies|gaming|space|skate|music)\\]$" default default dim +highlight feedlist "^N.* \\[news\\]$" blue default bold +highlight feedlist "^N.* \\[tech\\]$" cyan default bold +highlight feedlist "^N.* \\[normies\\]$" red default bold +highlight feedlist "^N.* \\[gaming\\]$" yellow default bold +highlight feedlist "^N.* \\[space\\]$" blue default bold +highlight feedlist "^N.* \\[skate\\]$" magenta default bold +highlight feedlist "^N.* \\[music\\]$" green default bold +highlight feedlist "^#news .*" blue default bold +highlight feedlist "^#tech .*" cyan default bold +highlight feedlist "^#normies .*" red default bold +highlight feedlist "^#gaming .*" yellow default bold +highlight feedlist "^#space .*" blue default bold +highlight feedlist "^#skate .*" magenta default bold +highlight feedlist "^#music .*" green default bold +highlight feedlist "^N" default default invis highlight feedlist "\\[(news|tech|normies|gaming|space|skate|music)\\]$" default default invis diff --git a/.local/bin/nb b/.local/bin/nb index 117840d..3b36835 100755 --- a/.local/bin/nb +++ b/.local/bin/nb @@ -1,5 +1,6 @@ #!/bin/sh +[ $(hostname -s) = "po-rbo" ] && exec newsboat [ -f /tmp/cache.db ] && exec newsboat -c /tmp/cache.db -u /tmp/urls cache_file="$XDG_DATA_HOME/newsboat/cache.db.gpg" urls_file="$XDG_CONFIG_HOME/newsboat/urls.gpg" diff --git a/.local/bin/ref-newsboat b/.local/bin/ref-newsboat index 090ca63..ca1aee1 100755 --- a/.local/bin/ref-newsboat +++ b/.local/bin/ref-newsboat @@ -5,27 +5,25 @@ use warnings; use Capture::Tiny qw(capture); use constant { - NEWSBOAT_PATH => '/usr/local/bin/newsboat', - NOTIFY_SEND_PATH => '/usr/local/bin/notify-send' + NEWSBOAT_PATH => 'newsboat', + NOTIFY_SEND_PATH => 'notify-send' }; sub main { my $stdout; + my $nb; + + $nb = NEWSBOAT_PATH; if (system( - NEWSBOAT_PATH, + $nb, '-x', 'reload' ) != 0) { exit 1; } - ($stdout, undef, undef) = capture { - system( - NEWSBOAT_PATH, - '-x', - 'print-unread' - ); - }; + + $stdout = qx($nb -x print-unread); $stdout =~ s/\s.+//; chomp $stdout; if ($stdout != 0) { @@ -33,11 +31,13 @@ sub main NOTIFY_SEND_PATH, '-u', 'low', + '-t', + '4000', 'newsboat', - ' ' . $stdout . ' new articles' + ' <b>' . $stdout . '</b> new articles' ); } - exit 0; + return; } main(); |