Skip to content

Commit 6306049

Browse files
committed
feat: add more icons to status command for enhanced visual representation
1 parent 68308eb commit 6306049

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "schedule-management"
7-
version = "0.3.1"
7+
version = "0.3.2"
88
description = "A TOML based scheduling tool"
99
readme = "README.md"
1010
requires-python = ">=3.12"

src/schedule_management/reminder.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,6 +1000,15 @@ def add_period_section(title, icon, events, color):
10001000
elif "pomodoro" in name.lower():
10011001
name_styled = name
10021002
icon_type = "🍅"
1003+
elif "patato" in name.lower():
1004+
name_styled = name
1005+
icon_type = "🥔"
1006+
elif "go_to_bed" in name.lower():
1007+
name_styled = f"[bold blue]{name}[/bold blue]"
1008+
icon_type = "🌙"
1009+
elif "summary_time" in name.lower():
1010+
name_styled = f"[bold magenta]{name}[/bold magenta]"
1011+
icon_type = "📝"
10031012
else:
10041013
name_styled = f"[bold]{name}[/bold]"
10051014
icon_type = "•"

0 commit comments

Comments
 (0)