Skip to content

Commit

Permalink
Update ending.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDoobPG authored and MrDoobPG committed Sep 7, 2019
1 parent 45be57e commit 2124b14
Showing 1 changed file with 21 additions and 24 deletions.
45 changes: 21 additions & 24 deletions menu/interface/ending.sh
Original file line number Diff line number Diff line change
@@ -1,45 +1,42 @@
#!/bin/bash
#
# Title: PGBlitz (Reference Title File)
# Title: pts (Reference Title File)
# Author(s): Admin9705 - FlickerRate
# URL: https://pgblitz.com - http://github.pgblitz.com
# 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
#
clear
echo ""
cat <<"EOF"
┌─────────────────────────────────────┐
│░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│
│░█▀█░█░░░█▀▀░█░█░█▀▀░█░█░▀█▀░█▀▄░█▀▀░│
│░█▀▀░█░░░█▀▀░▄▀▄░█░█░█░█░░█░░█░█░█▀▀░│
│░▀░░░▀▀▀░▀▀▀░▀░▀░▀▀▀░▀▀▀░▀▀▀░▀▀░░▀▀▀░│
│░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│
└─────────────────────────────────────┘
EOF

cat <<"EOF"
┌─────────────────────────────────────┐
│ -== Team PGBLitz ==- │
│ ————————————————————————————————————│
│ Star PG: github.pgblitz.com │
│ Donate: donate.pgblitz.com │
│ -== Team PTS ==- │
│ ————————————————————————————————————│
│ Restart PGBlitz: pgblitz │
│ Update PGBlitz: pgupdate │
│ View the PG Blitz Logs: blitz │
│ Download Your PG Fork: pgfork │
│ Restart PTS: pts │
│ Update PTS: ptsupdate │
│ View the PTS Logs: blitz │
│ Download Your PTS Fork: pgfork │
│ │
│ ————————————————————————————————————│
│ Thanks For Being Part of the Team │
│ │
│ Thanks to: │
│ │
│ Davaz, Deiteq, FlickerRate, │
│ ClownFused, MrDoob, Sub7Seven, │
│ TimeKills, The_Creator, Desimaniac, │
│ l3uddz, RXWatcher,Calmcacil, Porkie │
└─────────────────────────────────────┘
EOF

if [[ ! -e "/bin/pgblitz" ]]; then
cp /opt/plexguide/menu/alias/templates/pgblitz /bin
if [[ ! -e "/bin/pts" ]]; then
cp /opt/plexguide/menu/alias/templates/pts /bin
fi

chown 1000:1000 /bin/pgblitz &>/dev/null &
chmod 0755 /bin/pgblitz &>/dev/null &
chown 1000:1000 /bin/pts &>/dev/null &
chmod 0755 /bin/pts &>/dev/null &

0 comments on commit 2124b14

Please sign in to comment.