mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-27 15:54:57 +08:00
13 lines
279 B
Bash
Executable file
13 lines
279 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Write PID to that file so other processes can send signals to me
|
|
echo $$ > /tmp/mpdinfo_pid
|
|
|
|
while : # This is the same as "while true".
|
|
do
|
|
# I do this when I wake up
|
|
~/Scripts/mpd-query.sh
|
|
# Then I go back to sleep
|
|
sleep 1d
|
|
#echo "woke up!"
|
|
done
|