12 lines
176 B
Bash
Executable File
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 $@ |