diff options
| author | Dylan Araps <[email protected]> | 2017-06-26 23:46:58 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-06-26 23:46:58 +1000 |
| commit | 6215fd602bee66c78af0ff8614a0881c8b0ac67e (patch) | |
| tree | 10947701f51ac11230a5e12119a965223b73a64d | |
| parent | General: Rename globals to settings and import constants we need. (diff) | |
| download | pywal-6215fd602bee66c78af0ff8614a0881c8b0ac67e.tar.xz pywal-6215fd602bee66c78af0ff8614a0881c8b0ac67e.zip | |
General: Update comments.
| -rwxr-xr-x | pywal/format_color.py | 2 | ||||
| -rwxr-xr-x | pywal/settings.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pywal/format_color.py b/pywal/format_color.py index 8ab462a..5d70ba0 100755 --- a/pywal/format_color.py +++ b/pywal/format_color.py @@ -53,7 +53,7 @@ def xrdb(colors): x_colors.append(f"URxvt*cursorColor: {colors[15]}\n") x_colors.append(f"XTerm*cursorColor: {colors[15]}\n") - # Colors 0-15 + # Colors 0-15. x_colors.extend([f"*.color{index}: {color}\n*color{index}: {color}\n" for index, color in enumerate(colors)]) diff --git a/pywal/settings.py b/pywal/settings.py index c72b37a..8758a98 100755 --- a/pywal/settings.py +++ b/pywal/settings.py @@ -1,5 +1,5 @@ """ -Global variables and classes. +Global Constants. """ import pathlib |