mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-01 23:23:09 +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
|