dotfiles

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

config (2033B)


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