Skip to content

Commit

Permalink
Fixed missing resources
Browse files Browse the repository at this point in the history
  • Loading branch information
RhetTbull committed Sep 28, 2022
1 parent fd8b890 commit 6f614ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chargemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

SNOOZE_TIME = 15 * 60

__version__ = "0.3.0"
__version__ = "0.3.1"


class ChargingMonitor(rumps.App):
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
from setuptools import setup

APP = ["chargemon.py"]
DATA_FILES = ["chargemon_plugged.png", "chargemon_unplugged.png"]
DATA_FILES = [
"chargemon_plugged.png",
"chargemon_unplugged.png",
"chargemon_plugged_snooze.png",
"chargemon_unplugged_snooze.png",
]
OPTIONS = {
"argv_emulation": True,
"iconfile": "icon.icns",
Expand Down

0 comments on commit 6f614ea

Please sign in to comment.