dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

config (2158B)


      1 urls-source "miniflux"
      2 miniflux-url "https://miniflux.alex.balgavy.eu"
      3 miniflux-login "admin"
      4 miniflux-passwordeval "rbw get miniflux.alex.balgavy.eu"
      5 
      6 auto-reload no
      7 reload-threads 8
      8 show-read-feeds no
      9 delete-read-articles-on-quit yes
     10 notify-program "~/.config/newsboat/notify-wrapper"
     11 notify-always yes
     12 article-sort-order date
     13 error-log "~/.config/newsboat/error.log"
     14 prepopulate-query-feeds yes
     15 goto-next-feed no
     16 scrolloff 5
     17 datetime-format "%b %d %y"
     18 
     19 define-filter "read articles" "unread = \"no\""
     20 define-filter "downloaded" "flags # \"d\""
     21 define-filter "last 2 days" "age <= 2"
     22 define-filter "last week" "age between 0:7"
     23 
     24 bind-key j down
     25 bind-key k up
     26 bind-key j next articlelist
     27 bind-key k prev articlelist
     28 bind-key J next-feed articlelist
     29 bind-key K prev-feed articlelist
     30 bind-key G end
     31 bind-key g home
     32 bind-key ^D pagedown
     33 bind-key ^U pageup
     34 bind-key l open
     35 bind-key h quit
     36 bind-key a toggle-article-read
     37 bind-key n next-unread
     38 bind-key N prev-unread
     39 bind-key U show-urls
     40 bind-key ^t next-unread
     41 bind-key \ toggle-show-read-feeds
     42 bind-key E edit-urls
     43 bind-key ^r reload-urls
     44 bind-key t set-tag
     45 bind-key ^t clear-tag
     46 bind-key e enqueue
     47 unbind-key :
     48 bind-key ; cmdline
     49 bind-key s sort
     50 bind-key S rev-sort
     51 
     52 color background white default
     53 color listnormal white default
     54 color listfocus blue default underline bold
     55 color listfocus_unread blue default underline bold
     56 color info blue default standout bold
     57 color listnormal_unread white default
     58 
     59 browser "linkhandler %u"
     60 unbind-key ,
     61 bind-key SPACE macro-prefix
     62 macro SPACE set browser "open -g %u"; open-in-browser; set browser "linkhandler %u" -- "Open in browser"
     63 macro i set browser "youtube-dl --get-title --get-duration --get-description %u | less"; open-in-browser; set browser "linkhandler %u" -- "Get media info"
     64 macro c set browser "printf '%s' %u | clc" ; open-in-browser ; set browser "linkhandler %u" -- "Copy link"
     65 macro u set browser "urlview"; open-in-browser ; set browser "linkhandler %u" -- "Urlview"
     66 macro s set browser "pocket save %u && notify 'Saved to Pocket' %u 'pocket' || notify 'Could not save' %u 'pocket'"; open-in-browser ; set browser "linkhandler %u" -- "Save to Pocket"