mirror of
https://github.com/Ascyii/scripts.git
synced 2026-01-01 12:54:24 -05:00
11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Starting pomodoro timer
|
|
~/bin/tomatoshell $1
|
|
|
|
# When started without argument, then clear the console (make it visible again)
|
|
if [ "$#" -eq 0 ]; then
|
|
tput reset
|
|
fi
|
|
|