dotfiles/.local/bin/initialize_pipes

9 lines
111 B
Plaintext
Raw Normal View History

2024-06-23 06:44:57 -04:00
#!/bin/sh
PIPES="volume now-playing"
2024-06-23 06:44:57 -04:00
for pipe in $PIPES; do
echo "" >"/tmp/pipe-$pipe"
pipe_"$pipe" &
done