scripts/waybar/waybar-todo.sh

10 lines
223 B
Bash
Executable File

#!/bin/bash
RUNNING=$(pgrep todotxt-machine)
if [ "$RUNNING" ]; then
kill $RUNNING 2&>1 /dev/null
else
/usr/bin/alacritty --title todotxt-machine -e ${HOME}/.pyenv/shims/todotxt-machine ${HOME}/export/todo.txt
fi