dotfiles/.local/bin/initialize_pipes

9 lines
110 B
Plaintext
Raw Normal View History

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