├── .gitignore ├── LICENSE.md ├── README.md ├── assets └── example.gif ├── news_fetcher.py ├── news_rotator.py ├── print_current_article.sh ├── scroll_current_article.sh └── sources ├── __init__.py ├── hackernews.py └── newsapi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zemmsoares/polybar-news/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zemmsoares/polybar-news/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zemmsoares/polybar-news/HEAD/README.md -------------------------------------------------------------------------------- /assets/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zemmsoares/polybar-news/HEAD/assets/example.gif -------------------------------------------------------------------------------- /news_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zemmsoares/polybar-news/HEAD/news_fetcher.py -------------------------------------------------------------------------------- /news_rotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zemmsoares/polybar-news/HEAD/news_rotator.py -------------------------------------------------------------------------------- /print_current_article.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zemmsoares/polybar-news/HEAD/print_current_article.sh -------------------------------------------------------------------------------- /scroll_current_article.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zemmsoares/polybar-news/HEAD/scroll_current_article.sh -------------------------------------------------------------------------------- /sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/hackernews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zemmsoares/polybar-news/HEAD/sources/hackernews.py -------------------------------------------------------------------------------- /sources/newsapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zemmsoares/polybar-news/HEAD/sources/newsapi.py --------------------------------------------------------------------------------