8 lines
117 B
Bash
8 lines
117 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# archypr:summary=Reload Helix configuration
|
||
|
|
|
||
|
|
if pgrep -x helix >/dev/null; then
|
||
|
|
pkill -USR1 helix
|
||
|
|
fi
|