mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-02 05:05:43 +01:00
9 lines
130 B
Bash
Executable File
9 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [[ -f "/tmp/yambar.pid" ]]; then
|
|
killall yambar
|
|
rm "/tmp/yambar.pid"
|
|
else
|
|
launch yambar >> /tmp/yambar.pid
|
|
fi
|