From cca8b1752b88739dc539335d1ad2190c3312297b Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 23 Jul 2017 19:27:54 +1000 Subject: docs: README --- README.md | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index ebb0f1f..2730a7c 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ [![PyPI](https://img.shields.io/pypi/v/pywal.svg)](https://pypi.python.org/pypi/pywal/) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md) [![Build Status](https://travis-ci.org/dylanaraps/pywal.svg?branch=master)](https://travis-ci.org/dylanaraps/pywal) +\[[Installation](https://github.com/dylanaraps/pywal/wiki/Installation)\] \[[Getting Started](https://github.com/dylanaraps/pywal/wiki/Getting-Started)\] \[[Customization](https://github.com/dylanaraps/pywal/wiki/Customization)\] + `wal` is a script that takes an image (or a directory of images), generates a colorscheme (using `imagemagick`) and then changes all of your open terminal's colors to the new colorscheme on the fly. `wal` then caches each generated colorscheme so that cycling through wallpapers while changing colorschemes is instantaneous. `wal` also merges the new colorscheme into the Xresources database so that programs on your system such as `Rofi` or `i3` use the new colors automatically. `wal` finally exports the colors into various formats so that you can use the colors in webpages, scripts, other programs etc. @@ -15,18 +17,3 @@ For more info, check out the [Wiki](https://github.com/dylanaraps/pywal/wiki). [Albums of examples (Warning large)](https://dylanaraps.com/pages/rice) ![screenshot](https://i.imgur.com/hkAJjJg.png) - - -## Installation - -https://github.com/dylanaraps/pywal/wiki/Installation - - -## Getting Started - -https://github.com/dylanaraps/pywal/wiki/Getting-Started - - -## Customization - -https://github.com/dylanaraps/pywal/wiki -- cgit v1.2.3 From dafbd21b5e3f12147595410d17a5e2cd1dd42cae Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 23 Jul 2017 19:48:44 +1000 Subject: general: changes --- .travis.yml | 3 ++- README.md | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 36c9a18..4dcc9b6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,9 +7,10 @@ before_install: - sudo apt-get install -y imagemagick install: - - pip install flake8 pylint + - pip install flake8 pylint codecov script: - flake8 pywal tests setup.py - pylint pywal tests setup.py - python setup.py test + - codecov diff --git a/README.md b/README.md index 2730a7c..7f6f009 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![PyPI](https://img.shields.io/pypi/v/pywal.svg)](https://pypi.python.org/pypi/pywal/) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md) [![Build Status](https://travis-ci.org/dylanaraps/pywal.svg?branch=master)](https://travis-ci.org/dylanaraps/pywal) -\[[Installation](https://github.com/dylanaraps/pywal/wiki/Installation)\] \[[Getting Started](https://github.com/dylanaraps/pywal/wiki/Getting-Started)\] \[[Customization](https://github.com/dylanaraps/pywal/wiki/Customization)\] +**\[[Installation](https://github.com/dylanaraps/pywal/wiki/Installation)\] \[[Getting Started](https://github.com/dylanaraps/pywal/wiki/Getting-Started)\] \[[Customization](https://github.com/dylanaraps/pywal/wiki/Customization)\] \[[Wiki](https://github.com/dylanaraps/pywal/wiki)\]** `wal` is a script that takes an image (or a directory of images), generates a colorscheme (using `imagemagick`) and then changes all of your open terminal's colors to the new colorscheme on the fly. `wal` then caches each generated colorscheme so that cycling through wallpapers while changing colorschemes is instantaneous. @@ -11,9 +11,9 @@ For more info, check out the [Wiki](https://github.com/dylanaraps/pywal/wiki). -**NOTE:** `wal` is not perfect and won't work well with some images. - [Albums of examples (Warning large)](https://dylanaraps.com/pages/rice) ![screenshot](https://i.imgur.com/hkAJjJg.png) + + -- cgit v1.2.3 From 923ea0011c7d0dbfb219e05bde06b50204ea6e9a Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 23 Jul 2017 19:52:45 +1000 Subject: travis: fix coverage --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4dcc9b6..171f022 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,5 +12,7 @@ install: script: - flake8 pywal tests setup.py - pylint pywal tests setup.py - - python setup.py test - - codecov + - coverage run ./setup.py test + +after_success: +- codecov -- cgit v1.2.3 From e09809709153dd9e57d05e055bb4c419ac5e6ca2 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 23 Jul 2017 19:56:08 +1000 Subject: travis: Fix coverage --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 171f022..78a6edc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ install: script: - flake8 pywal tests setup.py - pylint pywal tests setup.py - - coverage run ./setup.py test + - coverage run --source=my_module/ ./setup.py test after_success: - codecov -- cgit v1.2.3 From 32d5a748294e2b164a333abc10be928aab47076c Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 23 Jul 2017 20:01:18 +1000 Subject: travis: Fix module name --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 78a6edc..c420e8e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ install: script: - flake8 pywal tests setup.py - pylint pywal tests setup.py - - coverage run --source=my_module/ ./setup.py test + - coverage run --source=pywal/ ./setup.py test after_success: - codecov -- cgit v1.2.3