12 lines
342 B
Bash
12 lines
342 B
Bash
#!/bin/sh
|
|
|
|
# Section toggels
|
|
news=true # enables the news section
|
|
quote=true # enables the quotes section
|
|
ramblings=false #enables the ramblings section
|
|
|
|
# set the path where wire looks for ramblings, this is mostly for server use.
|
|
ramblings_path=${XDG_DOCUMENTS_DIR}/wire/
|
|
|
|
article_path="https://rss.nytimes.com/services/xml/rss/nyt/US.xml"
|