mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 07:24:10 +01: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
|