Skip to content

Commit f344ecf

Browse files
committed
add some emojis to the status line
1 parent 7877082 commit f344ecf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lua/pomodoro/pomodoro.lua

+4-3
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,12 @@ function pomodoro.get_pomodoro_status()
4949

5050
local phase_str = ""
5151
if pomodoro.phase == Phases.NOT_RUNNING then
52-
phase_str = "Not Running"
52+
phase_str = "🍅❌"
53+
time_left = 0
5354
elseif pomodoro.phase == Phases.RUNNING then
54-
phase_str = "Work"
55+
phase_str = "🍅"
5556
elseif pomodoro.phase == Phases.BREAK then
56-
phase_str = "Break"
57+
phase_str = ""
5758
end
5859

5960
local minutes = math.floor(time_left / 60000)

0 commit comments

Comments
 (0)