Compare commits

..

No commits in common. "b9aaba6878899b1f3f8c61c827339f2d6a81465f" and "dc9169c19e8ed41fb415ce632505383b07cd6802" have entirely different histories.

3 changed files with 2 additions and 11 deletions

View file

@ -43,13 +43,8 @@
(overlay
(circular-progress
:class "circle-progress"
:value "${
timer-state == "inactive" ? 100 :
100 * (timer-start-time + (timer-state == "work" ? WORK_TIME_SEC : PAUSE_TIME_SEC) - timer-time)
/ (timer-state == "work" ? WORK_TIME_SEC : PAUSE_TIME_SEC)
}"
:value 100
:thickness 6
:start-at 75
:clockwise true)
(label :class "start-icon" :text "${timer-state == "inactive" ? 'Start' : (timer-state == "work" ? "Working" : "Pause")}")
)

View file

@ -1,5 +1,5 @@
#!/usr/bin/bash
if command -v jaaj &> /dev/null && command -v dotacat &> /dev/null; then
if command -v jaaj &> /dev/null && command -v lolcat &> /dev/null; then
jaaj
fi

View file

@ -44,10 +44,6 @@ if command -v starship > /dev/null; then
eval "$(starship init bash)"
fi
if command -v zoxide > /dev/null; then
eval "$(zoxide init bash)"
fi
if [ -f ~/.bash_exec ]; then
source ~/.bash_exec
fi