sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

index.md (1168B)


      1 schemeSwitch
      2 ============
      3 
      4 Description
      5 -----------
      6 [Solarized](http://ethanschoonover.com/solarized) is a color scheme by Ethan
      7 Schoonover which exists in a dark and a light variant.
      8 
      9 This patch allows you defining more then one color-Scheme in the colors array
     10 in config.def.h (or config.h) and cycle through the schemes by schemeCycle()
     11 function (bound to Mod+Shift+z) and toggle between corresponding light and dark
     12 schemes with schemeToggle() function (bound to Mod+Shift+t).
     13 
     14 In the example config.def.h there are first defined the colors for the dark
     15 variant of solarized theme, after that the colors for the light variant, and
     16 then the original dwm colorscheme, wich has no corresponding light scheme. If
     17 the last one is selected shemeToggle() will do nothing, but one can cycle to
     18 the dark scheme (or the light one) and then toggle between light and dark. If
     19 there where colors defined after the original scheme, then schemeToggle() would
     20 toggle between original and the consecutive.
     21 
     22 Download
     23 --------
     24 * [dwm-scheme\_switch-20170804-ceac8c9.diff](dwm-scheme_switch-20170804-ceac8c9.diff)
     25 
     26 Authors
     27 -------
     28 * Aaron Strahlberger - <aaron.strahlberger@posteo.de>