This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # drivelinker - short script to make symlinks of drives | |
| # variables | |
| refreshrate="5" # refresh rate in seconds | |
| desktop="$HOME/Desktop" # user's desktop | |
| mount="/run/media/$USER" # where the drives are mounted | |
| while true; do | |
| for link in $desktop/* |
NewerOlder