Skip to content

Instantly share code, notes, and snippets.

View Chrizwiz15's full-sized avatar

Chriz Fernandez Chrizwiz15

  • Quezon City, Philippines
View GitHub Profile
@Chrizwiz15
Chrizwiz15 / .zshrc
Created May 25, 2025 07:12 — forked from bashbunni/.zshrc
CLI Pomodoro for Mac
# I'll be doing another one for Linux, but this one will give you
# a pop up notification and sound alert (using the built-in sounds for macOS)
# Requires https://github.com/caarlos0/timer to be installed
# Mac setup for pomo
alias work="timer 60m && terminal-notifier -message 'Pomodoro'\
-title 'Work Timer is up! Take a Break 😊'\
-appIcon '~/Pictures/pumpkin.png'\
-sound Crystal"
@Chrizwiz15
Chrizwiz15 / .zshrc
Created May 25, 2025 07:11 — forked from bashbunni/.zshrc
CLI Pomodoro for Linux
# study stream aliases
# Requires https://github.com/caarlos0/timer to be installed. spd-say should ship with your distro
declare -A pomo_options
pomo_options["work"]="45"
pomo_options["break"]="10"
pomodoro () {
if [ -n "$1" -a -n "${pomo_options["$1"]}" ]; then
val=$1