You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
880 B

  1. --- a/README.md
  2. +++ b/README.md
  3. @@ -40,7 +40,7 @@ Example output:
  4. - PyGame
  5. - i3ipc
  6. - pillow
  7. -- xdg
  8. +- xdg-base-dirs
  9. - pyxdg
  10. # Usage
  11. diff --git a/i3expod.py b/i3expod.py
  12. index 74150fe..7c1df6b 100755
  13. --- a/i3expod.py
  14. +++ b/i3expod.py
  15. @@ -18,7 +18,7 @@
  16. import prtscn
  17. try:
  18. - from xdg import xdg_config_home
  19. + from xdg_base_dirs import xdg_config_home
  20. xdg_config_home = str(xdg_config_home())
  21. except ImportError:
  22. diff --git a/requirements.txt b/requirements.txt
  23. index 48220d8..94bfe75 100644
  24. --- a/requirements.txt
  25. +++ b/requirements.txt
  26. @@ -1,5 +1,5 @@
  27. pygame
  28. i3ipc
  29. pillow
  30. -xdg
  31. +xdg-base-dirs
  32. pyxdg
  33. diff --git a/setup.py b/setup.py
  34. index 173aee2..e0ae273 100644
  35. --- a/setup.py
  36. +++ b/setup.py
  37. @@ -20,7 +20,7 @@
  38. 'pygame',
  39. 'i3ipc',
  40. 'pillow',
  41. - 'xdg',
  42. + 'xdg-base-dirs',
  43. 'pyxdg',
  44. ],
  45. entry_points={