mirror of
https://github.com/VectorKappa/dotfiles.git
synced 2025-12-20 00:36:09 +01:00
4 lines
86 B
Bash
Executable File
4 lines
86 B
Bash
Executable File
#! /bin/bash
|
|
# Run program unless it's already running
|
|
pgrep $@ > /dev/null || ($@ &)
|