diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-06-19 12:20:06 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-06-19 12:20:06 +1000 |
| commit | fef3bc888a8a542e844faf9ad517db6a2842b6d2 (patch) | |
| tree | 044135f24030cc16f3edfc032e2f53320ec116d7 | |
| parent | 89e12a61c5d26b0bce829938ff512b254b714f65 (diff) | |
General: Set the wallpaper earlier.
| -rw-r--r-- | wal.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -385,6 +385,9 @@ def main(): if args.i: image = str(get_image(args.i)) + # Set the wallpaper. + set_wallpaper(image) + # Create colorscheme dir. pathlib.Path(CACHE_DIR + "schemes").mkdir(parents=True, exist_ok=True) @@ -393,7 +396,6 @@ def main(): # Set the colors. send_sequences(colors, args.t) - set_wallpaper(image) export_plain(colors) export_xrdb(colors) |
