From 9844ff3851870db7c9326c25d406f9bf7e601424 Mon Sep 17 00:00:00 2001 From: Tonus Date: Wed, 26 Apr 2023 20:09:43 +0200 Subject: [PATCH] change xdg to xdg-base-dirs according to https://github.com/srstevenson/xdg-base-dirs --- README.md | 2 +- i3expod.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ef664e5..4bf5f97 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Example output: - PyGame - i3ipc - pillow -- xdg +- xdg-base-dirs - pyxdg # Usage diff --git a/i3expod.py b/i3expod.py index 74150fe..7c1df6b 100755 --- a/i3expod.py +++ b/i3expod.py @@ -18,7 +18,7 @@ import prtscn try: - from xdg import xdg_config_home + from xdg_base_dirs import xdg_config_home xdg_config_home = str(xdg_config_home()) except ImportError: diff --git a/requirements.txt b/requirements.txt index 48220d8..94bfe75 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ pygame i3ipc pillow -xdg +xdg-base-dirs pyxdg diff --git a/setup.py b/setup.py index 173aee2..e0ae273 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ 'pygame', 'i3ipc', 'pillow', - 'xdg', + 'xdg-base-dirs', 'pyxdg', ], entry_points={