You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.7 KiB
51 lines
2.7 KiB
#!/bin/bash
|
|
|
|
Say () {
|
|
printf "\e[1;34m $1 \e[0m \n";
|
|
}
|
|
|
|
DotSay () {
|
|
printf "[\e[1;34m*\e[0m] \e[0;34m $1 \e[0m \n";
|
|
}
|
|
|
|
|
|
Say '[PVE Discord Dark UI Theme Installer]'
|
|
Say 'Internet connection required to download files'
|
|
Say '>Press any key to begin installation'
|
|
read -p ""
|
|
Say ' '
|
|
DotSay 'Backing up index template file'
|
|
cp /usr/share/pve-manager/index.html.tpl /usr/share/pve-manager/index.html.tpl.bak
|
|
DotSay 'Applying stylesheet..'
|
|
wget https://raw.githubusercontent.com/Weilbyte/PVEDiscordDark/master/serverside/style.css &> /dev/null
|
|
echo "<style type='text/css' media='screen'>" >> /usr/share/pve-manager/index.html.tpl
|
|
cat style.css >> /usr/share/pve-manager/index.html.tpl
|
|
echo "</style>" >> /usr/share/pve-manager/index.html.tpl
|
|
rm style.css
|
|
DotSay 'Applied stylesheet!'
|
|
DotSay 'Downloading images..'
|
|
cd /usr/share/pve-manager/images
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_cephblurp.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_cephwhite.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-cpu.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-hdd.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-ram.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-swap.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-cd.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-display.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-network.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-cloud.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-serial.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-usb.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_icon-pci.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_logo.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_mini-bottom.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_mini-top.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_readme &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_tool-sprites.png &> /dev/null
|
|
wget https://github.com/Weilbyte/PVEDiscordDark/raw/master/images/dd_trigger.png &> /dev/null
|
|
|
|
DotSay 'Downloaded images!'
|
|
Say ''
|
|
Say 'Installation finished!'
|
|
Say 'o7'
|
|
|