McMojave-cursors/install.sh

21 lines
318 B
Bash
Raw Normal View History

2020-01-26 06:56:09 -08:00
#!/bin/bash
ROOT_UID=0
DEST_DIR=
# Destination directory
if [ "$UID" -eq "$ROOT_UID" ]; then
DEST_DIR="/usr/share/icons"
else
DEST_DIR="$HOME/.local/share/icons"
fi
2020-02-07 05:08:59 -08:00
if [ -d "$DEST_DIR/McMojave-cursors" ]; then
rm -r "$DEST_DIR/McMojave-cursors"
fi
cp -pr dist $DEST_DIR/McMojave-cursors
2020-01-26 06:56:09 -08:00
echo "Finished..."