mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-28 00:04:57 +08:00
Former-commit-id: 1e0f121e54
Former-commit-id: 82b4a6efae5e9285c105d10c690545491728e918
Former-commit-id: 1a9fa022ffa1a57d51f23642ca5a83b74ea2a473
13 lines
275 B
Bash
Executable file
13 lines
275 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Write PID to that file so other processes can send signals to me
|
|
echo $$ > /tmp/volume_pid
|
|
|
|
while : # This is the same as "while true".
|
|
do
|
|
# I do this when I wake up
|
|
~/Scripts/volume.sh
|
|
# Then I go back to sleep
|
|
sleep 1d
|
|
#echo "woke up!"
|
|
done
|