Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Example output:
- PyGame
- i3ipc
- pillow
- xdg
- xdg-base-dirs
- pyxdg
# Usage

Expand Down
4 changes: 2 additions & 2 deletions i3expod.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
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:
from xdg.BaseDirectory import xdg_config_home
from xdg_base_dirs import xdg_config_home
from contextlib import suppress
from PIL import ImageFilter, ImageEnhance, Image

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pygame
i3ipc
pillow
xdg
xdg-base-dirs
pyxdg
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'pygame',
'i3ipc',
'pillow',
'xdg',
'xdg-base-dirs',
'pyxdg',
],
entry_points={
Expand Down