dotfiles/.local/bin/scripts/launch
2021-01-23 19:55:22 +01:00

4 lines
155 B
Bash
Executable file

#!/bin/sh
#ps aux | grep -v $0 | grep -m 1 $1
echo -n "$1: "
pgrep ${2:-$1} -a | grep --color=never -m 1 . || ( echo Launching && ($1 >/dev/null 2>&1 &) )