mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
9 lines
102 B
Bash
Executable File
9 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
if [ $(mount | grep -c ~/MyCloud) == 1 ]
|
|
then
|
|
echo 💾
|
|
else
|
|
echo ""
|
|
fi
|
|
|