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