🎨 Generate and change color-schemes on the fly.
Go to file
2017-07-05 14:16:47 +10:00
pywal util: Update docs 2017-07-02 23:30:09 +10:00
tests tests: Fix test. 2017-06-30 10:23:21 +10:00
.gitignore General: Remove find_packages 2017-06-27 10:43:23 +10:00
.travis.yml travis: Install imagemagick. 2017-06-27 17:44:29 +10:00
CONTRIBUTING.md DOCS: CONTRIBUTING 2017-06-27 21:54:47 +10:00
LICENSE.md docs: license 2017-07-05 14:16:47 +10:00
MANIFEST.in general: Add manifest 2017-06-30 22:30:01 +10:00
README.md docs: Add pypi badge. 2017-06-30 20:42:38 +10:00
setup.py setup: Remove useless line. 2017-06-30 21:55:22 +10:00

pywal (A wal rewrite in Python 3)

PyPI MIT licensed Build Status

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.

For more info, check out the Wiki.

NOTE: wal is not perfect and won't work well with some images.

Albums of examples (Warning large)

screen

Table of Contents

Requirements

Dependencies

  • linux
  • python 3.6
  • imagemagick
    • Colorscheme generation.
  • xfce, gnome, cinnamon, mate
    • Desktop wallpaper setting.
  • feh, nitrogen, bgs, hsetroot, habak
    • Universal wallpaper setting.

Terminal Emulator

To use wal your terminal emulator must support a special type of escape sequence. The command below can be used as a test to see if wal will work with your setup.

Run the command below, does the background color of your terminal become red?

printf "%b" "\033]11;#ff0000\007"

If your terminal's background color is now red, your terminal should work with wal.

Terminals that DON'T work with wal.

Installation

Pip install

pip install pywal

Manual/Git install

git clone https://github.com/dylanaraps/pywal
cd pywal
pip install .

Setup

NOTE: If you get junk in your terminal, add -t to all of the wal commands.

Applying the theme to new terminals.

wal only applies the new colors to the currently open terminals. Any new terminal windows you open won't be using the new theme unless you add a single line to your shell's start up file. (.bashrc, .zshrc etc.) The -r flags tells wal to find the current colorscheme inside the cache and then set it for the new terminal.

Add this line to your shell startup file. (.bashrc, .zshrc or etc.)

# Import colorscheme from 'wal'
(wal -r &)

# If the command above doesn't work,
# try this alternative.
setsid wal -r

Here's how the extra syntax above works:

&   # Run the process in the background.
( ) # Hide shell job control messages.

Making the colorscheme persist on reboot.

On reboot your new colorscheme won't be set or in use. To fix this you have to add a line to your .xinitrc or whatever file starts programs on your system. This wal command will set your wallpaper to the wallpaper that was set last boot and also apply the colorscheme again.

Without this you'll be themeless until you run wal again on boot.

# Add this to your .xinitrc or whatever file starts programs on startup.
wal -i "$(< "${HOME}/.cache/wal/wal")"

Usage

Run wal and point it to either a directory (wal -i "path/to/dir") or an image (wal -i "/path/to/img.jpg") and that's all. wal will change your wallpaper for you and also set your terminal colors.

usage: wal [-h] [-c] [-i "/path/to/img.jpg"]
                   [-f "/path/to/colorscheme/file"] [-n] [-o "script_name"]
                   [-q] [-r] [-t] [-v]

wal - Generate colorschemes on the fly

optional arguments:
  -h, --help            show this help message and exit
  -c                    Delete all cached colorschemes.
  -i "/path/to/img.jpg"
                        Which image or directory to use.
  -f "/path/to/colorscheme/file"
                        Which colorscheme file to use.
  -n                    Skip setting the wallpaper.
  -o "script_name"      External script to run after "wal".
  -q                    Quiet mode, don"t print anything and don't display
                        notifications.
  -r                    Reload current colorscheme.
  -t                    Fix artifacts in VTE Terminals. (Termite,
                        xfce4-terminal)
  -v                    Print "wal" version.

Customization

See the wal wiki!

https://github.com/dylanaraps/pywal/wiki