mirror of
https://github.com/MHA-Team/PTS-Team.git
synced 2026-02-21 05:03:37 +00:00
33 lines
1.2 KiB
Bash
33 lines
1.2 KiB
Bash
#!/bin/bash
|
|
#
|
|
# Title: pts (Reference Title File)
|
|
# Author(s): Admin9705 - FlickerRate
|
|
# URL: https://pts.com - http://github.pts.com
|
|
# GNU: General Public License v3.0
|
|
################################################################################
|
|
source /opt/plexguide/menu/functions/install.sh
|
|
emergency
|
|
|
|
# PG ascii art with color
|
|
echo ""
|
|
<<-EOF
|
|
┌─────────────────────────────────────┐
|
|
│ -== Team PTS ==- │
|
|
│ ————————————————————————————————————│
|
|
│ Restart PTS: pts │
|
|
│ Update PTS: ptsupdate │
|
|
│ View the PG Blitz Logs: blitz │
|
|
│ Download Your PG Fork: pgfork │
|
|
│ ————————————————————————————————————│
|
|
│ Thanks For Being Part of the Team │
|
|
└─────────────────────────────────────┘
|
|
|
|
EOF
|
|
|
|
if [[ ! -e "/bin/pts" ]]; then
|
|
cp /opt/plexguide/menu/alias/templates/pts /bin
|
|
fi
|
|
|
|
chown 1000:1000 /bin/pts &>/dev/null &
|
|
chmod 0755 /bin/pts &>/dev/null &
|