diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2019-01-04 21:59:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-04 21:59:10 +0200 |
| commit | a6780c947cec775946f1b5126451a085e1e0b001 (patch) | |
| tree | 65f472e7b1216ef35f404dc228160c718625e8ff /pywal/templates | |
| parent | 04a10fdcc60f11224680bad831a8822d755df738 (diff) | |
| parent | 1e416a18a853159f3473d80c831322630d006bb1 (diff) | |
Merge branch 'master' into master
Diffstat (limited to 'pywal/templates')
| -rw-r--r-- | pywal/templates/colors-wal-dmenu.h | 6 | ||||
| -rw-r--r-- | pywal/templates/colors.hs | 37 |
2 files changed, 43 insertions, 0 deletions
diff --git a/pywal/templates/colors-wal-dmenu.h b/pywal/templates/colors-wal-dmenu.h new file mode 100644 index 0000000..aeab7a5 --- /dev/null +++ b/pywal/templates/colors-wal-dmenu.h @@ -0,0 +1,6 @@ +static const char *colors[SchemeLast][2] = {{ + /* fg bg */ + [SchemeNorm] = {{ "{color15}", "{color0}" }}, + [SchemeSel] = {{ "{color15}", "{color1}" }}, + [SchemeOut] = {{ "{color15}", "{color14}" }}, +}}; diff --git a/pywal/templates/colors.hs b/pywal/templates/colors.hs new file mode 100644 index 0000000..6ffa1a6 --- /dev/null +++ b/pywal/templates/colors.hs @@ -0,0 +1,37 @@ +--Place this file in your .xmonad/lib directory and import module Colors into .xmonad/xmonad.hs config +--The easy way is to create a soft link from this file to the file in .xmonad/lib using ln -s +--Then recompile and restart xmonad. + +module Colors + ( wallpaper + , background, foreground, cursor + , color0, color1, color2, color3, color4, color5, color6, color7 + , color8, color9, color10, color11, color12, color13, color14, color15 + ) where + +-- Shell variables +-- Generated by 'wal' +wallpaper="{wallpaper}" + +-- Special +background="{background}" +foreground="{foreground}" +cursor="{cursor}" + +-- Colors +color0="{color0}" +color1="{color1}" +color2="{color2}" +color3="{color3}" +color4="{color4}" +color5="{color5}" +color6="{color6}" +color7="{color7}" +color8="{color8}" +color9="{color9}" +color10="{color10}" +color11="{color11}" +color12="{color12}" +color13="{color13}" +color14="{color14}" +color15="{color15}" |
