mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-29 13:51:50 +02:00
8 lines
84 B
Bash
Executable File
8 lines
84 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ ! $(pidof anyrun) ]]; then
|
|
anyrun
|
|
else
|
|
pkill anyrun
|
|
fi
|