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