dotfiles/.config/waybar/scripts/close-screen-recorder.sh
2025-05-21 15:32:27 +02:00

12 lines
176 B
Bash
Executable File

#! /usr/bin/env bash
main() {
pid="$(pgrep "wf-recorder" || pgrep "slurp")"
status=$?
if [[ $status == 0 ]]; then
pkill --signal SIGINT wf-recorder
fi
}
main $@