- 
                Notifications
    
You must be signed in to change notification settings  - Fork 352
 
User Template Files
As of version 1.0.0 pywal now supports user defined template files. What this means is that similar to the export files in the ~/.cache/wal/ directory you can now create your own files which will be processed by pywal and spit out in this directory.
The user defined files are read from ~/.config/wal/templates/ and are exported to ~/.cache/wal/ under the same name. Using this feature you can also overwrite the default export files, here's an example using rofi.
The default rofi configuration in pywal has both a light and dark variation. You can modify either one of these themes by adding your own under the aforementioned directory. To demonstrate, the steps to customize the dark version of the theme are:
- Find the default template file.
- https://github.com/dylanaraps/pywal/tree/master/pywal/templates
 - For 
rofiit's calledcolors-rofi-dark.rasi(colors-rofi-light.rasifor the light version). 
 - Create a file called 
colors-rofi-dark.rasiin~/.config/wal/templates. - Define your own colors for 
rofiusing the values you want based on the original template. 
// Example snippet.
* {{
    active-background: {color2};
    active-foreground: {foreground};
    normal-background: {background};
    normal-foreground: {foreground};
    urgent-background: {color1};
    urgent-foreground: {foreground};
    // ...
}}
- Rerun 
walto apply the new settings. 
pywal's templating works by using Python's string formatting so it's builtin, quick and simple. Variables must be surrounded by {/} to be recognized and any existing curly-braces need to be escaped. To escape curly-braces you just double them, so { becomes {{ and so on.
Variables
- 
{color0}-->{color15}: Colors 0-15. - 
{background}: Background color. - 
{foreground}: Foreground color. - 
{cursor}: Cursor color. - 
{alpha}: Transparency, if provided via the-aflag. Default 0. - 
{wallpaper}: The full path to the current wallpaper. 
Modifiers
Note: These apply to all variables minus wallpaper.
- 
{var}: Output the color inhex. - 
{var.rgb}: Output the color inrgb. - 
{var.rgba}: Output the color inrgba. - 
{var.xrgba}: Output the color inxrgb. - 
{var.strip}: Output the color inhex(without a#). - 
{var.red}: Output the red value as float. - 
{var.green}: Output the green value as float. - 
{var.blue}: Output the blue value as float.