Updated for v1.3
This commit is contained in:
parent
7b3403994f
commit
56e8f25b6a
1 changed files with 37 additions and 51 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
# This script is for automating the install for both displays,
|
||||
# The 2-colour and 3-colour one.
|
||||
# Version: 1.2 (early October)
|
||||
# Version: 1.3 (Mid October)
|
||||
# Well tested and confirmed
|
||||
|
||||
# Copyright by Ace-Laboratory
|
||||
|
@ -54,56 +54,6 @@ echo -e "\e[1;36m"Cleaning a bit of mess to free up some space..."\e[0m"
|
|||
sudo apt-get clean > /dev/null && sudo apt-get autoremove -y > /dev/null
|
||||
echo ""
|
||||
|
||||
# Using this part for the 2-colour E-Paper version
|
||||
if [ "$digit" = 2 ]; then
|
||||
echo -e "\e[1;36m"Installing the 2-Colour E-Paper-Calendar Software"\e[0m"
|
||||
git clone https://github.com/aceisace/E-Paper-Calendar-with-iCal-sync-and-live-weather
|
||||
mkdir E-Paper-Master
|
||||
cd E-Paper-Calendar-with-iCal-sync-and-live-weather
|
||||
rm -r Calendar
|
||||
mv 2-colour Calendar
|
||||
cp -r Calendar /home/pi/E-Paper-Master/
|
||||
cp README.md /home/pi/E-Paper-Master/
|
||||
cp LICENSE /home/pi/E-Paper-Master/
|
||||
cp -r .git /home/pi/E-Paper-Master/
|
||||
cd
|
||||
sudo rm -r E-Paper-Calendar-with-iCal-sync-and-live-weather
|
||||
# add a short info
|
||||
cat > /home/pi/E-Paper-Master/Info.txt << EOF
|
||||
This document contains a short info of the version
|
||||
|
||||
Version: 2-Colour E-Paper-version
|
||||
Installer version: 1.2 (Early October 2018)
|
||||
If the time was set correctly, you installed this software on:
|
||||
EOF
|
||||
echo "$(date)" >> /home/pi/E-Paper-Master/Info.txt
|
||||
echo ""
|
||||
fi
|
||||
|
||||
# Using this part for the 3-colour E-Paper version
|
||||
if [ "$digit" = 3 ]; then
|
||||
echo -e "\e[1;36m"Installing the 3-Colour E-Paper-Calendar Software"\e[0m"
|
||||
git clone https://github.com/aceisace/E-Paper-Calendar-with-iCal-sync-and-live-weather
|
||||
mkdir E-Paper-Master
|
||||
cd E-Paper-Calendar-with-iCal-sync-and-live-weather
|
||||
cp -r Calendar /home/pi/E-Paper-Master/
|
||||
cp README.md /home/pi/E-Paper-Master/
|
||||
cp LICENSE /home/pi/E-Paper-Master/
|
||||
cp -r .git /home/pi/E-Paper-Master/
|
||||
cd
|
||||
sudo rm -r E-Paper-Calendar-with-iCal-sync-and-live-weather
|
||||
# add a short info
|
||||
cat > /home/pi/E-Paper-Master/Info.txt << EOF
|
||||
This document contains a short info of the version
|
||||
|
||||
Version: 3-Colour E-Paper-version
|
||||
Installer version: 1.2 (Early October 2018)
|
||||
If the time was set correctly, you installed this software on:
|
||||
EOF
|
||||
echo "$(date)" >> /home/pi/E-Paper-Master/Info.txt
|
||||
echo ""
|
||||
fi
|
||||
|
||||
# Installing packages required by the main script
|
||||
echo -e "\e[1;36m"Installing a few required packages for the E-Paper Software"\e[0m"
|
||||
{
|
||||
|
@ -114,6 +64,42 @@ pip3 install ics
|
|||
} > /dev/null
|
||||
echo ""
|
||||
|
||||
# Using this part for the 2-colour E-Paper version
|
||||
if [ "$digit" = 2 ]; then
|
||||
# execute the monocolour-converter to convert all 3-colour icons to 2-colour ones
|
||||
python3.5 /home/pi/E-Paper-Master/Calendar/monocolour-converter.py
|
||||
|
||||
# edit the settings file for the 2-colour display option
|
||||
sed -i 's/display_colours = "bwr"/display_colours = "bw"/' /home/pi/E-Paper-Master/Calendar/settings.py
|
||||
|
||||
# add a short info
|
||||
cat > /home/pi/E-Paper-Master/Info.txt << EOF
|
||||
This document contains a short info of the E-Paper-Calendar software version
|
||||
|
||||
Version: 2-Colour E-Paper-version
|
||||
Installer version: 1.3 (Mid October 2018)
|
||||
configuration file: /home/pi/E-Paper-Master/Calendar/settings.py
|
||||
If the time was set correctly, you installed this software on:
|
||||
EOF
|
||||
echo "$(date)" >> /home/pi/E-Paper-Master/Info.txt
|
||||
echo ""
|
||||
fi
|
||||
|
||||
# Using this part for the 3-colour E-Paper version
|
||||
if [ "$digit" = 3 ]; then
|
||||
# add a short info
|
||||
cat > /home/pi/E-Paper-Master/Info.txt << EOF
|
||||
This document contains a short info of the version
|
||||
|
||||
Version: 3-Colour E-Paper-version
|
||||
Installer version: 1.3 (Mid October 2018)
|
||||
configuration file: /home/pi/E-Paper-Master/Calendar/settings.py
|
||||
If the time was set correctly, you installed this software on:
|
||||
EOF
|
||||
echo "$(date)" >> /home/pi/E-Paper-Master/Info.txt
|
||||
echo ""
|
||||
fi
|
||||
|
||||
# Setting up supervisor
|
||||
echo -e "\e[1;36m"Setting up the script to start at boot..."\e[0m"
|
||||
sudo apt-get install supervisor -y > /dev/null
|
||||
|
|
Loading…
Reference in a new issue