aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <[email protected]>2018-01-02 11:46:03 +1100
committerDylan Araps <[email protected]>2018-01-02 11:46:03 +1100
commite09872be69d2666217cb4328b8c91519a7c9422d (patch)
tree437e0fb7e4515c1f761aba2960eccd397da7bc4e
parentcolors: cleanup (diff)
downloadpywal-e09872be69d2666217cb4328b8c91519a7c9422d.tar.xz
pywal-e09872be69d2666217cb4328b8c91519a7c9422d.zip
export: Add missing file definitions.
-rw-r--r--pywal/export.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/pywal/export.py b/pywal/export.py
index 12dc72d..a53a2e3 100644
--- a/pywal/export.py
+++ b/pywal/export.py
@@ -29,13 +29,18 @@ def get_export_type(export_type):
"""Convert template type to the right filename."""
return {
"css": "colors.css",
+ "dwm": "colors-wal-dwm.h",
+ "st": "colors-wal-st.h",
+ "tabbed": "colors-wal-tabbed.h",
+ "gtk2": "colors-gtk2.rc",
"json": "colors.json",
"konsole": "colors-konsole.colorscheme",
+ "plain": "colors",
"putty": "colors-putty.reg",
+ "rofi": "colors-rofi.Xresources",
"scss": "colors.scss",
"shell": "colors.sh",
"sway": "colors-sway",
- "rofi": "colors-rofi.Xresources",
"xresources": "colors.Xresources",
"yaml": "colors.yml",
}.get(export_type, export_type)