| 123456789101112131415161718192021222324252627282930313233343536 |
- #!/bin/bash
- # by DSR! from https://github.com/xchwarze/wifi-pineapple-community
- THEME="$1"
- FS_FOLDER="$2"
- declare -a TYPES=("default" "yinyang" "darkmode")
- if [[ "$FS_FOLDER" != "" && ! -d "$FS_FOLDER" ]] || [[ "$THEME" == "" ]] || ! grep -q "$THEME" <<< "${TYPES[*]}"; then
- echo "Run with \"install.sh [THEME] [FS_FOLDER]\""
- echo " THEME -> must be one of these values: default, yinyang, darkmode"
- echo " FS_FOLDER -> folder containing the fs to use"
- exit 1
- fi
- echo "Pineapple theme changer"
- echo "by DSR!"
- echo ""
- echo "[*] Theme: $THEME"
- if [[ ! -d "$FS_FOLDER/pineapple" ]]
- then
- echo "Not found: /pineapple"
- exit 1
- fi
- baseurl="https://raw.githubusercontent.com/xchwarze/wifi-pineapple-community/master/themes/$THEME"
- wget "$baseurl/bootstrap.min.css" -O "$FS_FOLDER/pineapple/css/bootstrap.min.css"
- wget "$baseurl/main.css" -O "$FS_FOLDER/pineapple/css/main.css"
- wget "$baseurl/logo.png" -O "$FS_FOLDER/pineapple/img/logo.png"
- wget "$baseurl/throbber.gif" -O "$FS_FOLDER/pineapple/img/throbber.gif"
- echo ""
- echo "Done!"
|