Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
wallpaper: Fix wm error
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Dec 19, 2017
1 parent a8a761f commit 05ef9be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pywal/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import platform


__version__ = "0.7.3"
__version__ = "0.7.4"


HOME = os.getenv("HOME", os.getenv("USERPROFILE"))
Expand Down
2 changes: 1 addition & 1 deletion pywal/wallpaper.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def set_desktop_wallpaper(desktop, img):
"""Set the wallpaper for the desktop environment."""
desktop = str(desktop).lower()

if desktop == "WM":
if desktop == "wm":
set_wm_wallpaper(img)

elif "xfce" in desktop or "xubuntu" in desktop:
Expand Down

4 comments on commit 05ef9be

@ltgouvea
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm using i3-gaps, just updated pywal to 0.7.4 and wallpaper setting is still not working

@dylanaraps
Copy link
Owner Author

@dylanaraps dylanaraps commented on 05ef9be Dec 19, 2017 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dylanaraps
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Try the latest release. :)

@ltgouvea
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Everything working fine :D thank you

Please sign in to comment.