1
0
forked from extern/nix-config

hyprland: Add toggle yambar script

This commit is contained in:
Donovan Glover 2023-04-30 12:53:02 -04:00
parent cdd27be432
commit b00d8c9ebb
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -0,0 +1,8 @@
#!/bin/sh
if [[ -f "/tmp/yambar.pid" ]]; then
killall yambar
rm "/tmp/yambar.pid"
else
launch yambar >> /tmp/yambar.pid
fi