2016-10-22 16:53:24 -04:00
|
|
|
#!/bin/bash
|
2017-02-19 20:27:26 -05:00
|
|
|
#Basic install script for Fenrir.
|
|
|
|
read -p "This will install Fenrir. Press ctrl+c to cancel, or enter to continue." continue
|
2017-02-17 03:48:17 -05:00
|
|
|
|
|
|
|
# fenrir main application
|
2016-10-22 16:53:24 -04:00
|
|
|
install -m755 -d /opt/fenrir
|
2017-02-17 03:48:17 -05:00
|
|
|
cp -a src/fenrir/* /opt/fenrir
|
|
|
|
install -m644 -D "autostart/systemd/fenrir.service" /usr/lib/systemd/system/fenrir.service
|
2017-03-16 18:51:22 -04:00
|
|
|
ln -s /opt/fenrir/fenrir-daemon /usr/bin/fenrir-daemon
|
|
|
|
ln -s /opt/fenrir/fenrir /usr/bin/fenrir
|
2017-02-17 03:48:17 -05:00
|
|
|
# tools
|
2017-02-02 03:55:22 -05:00
|
|
|
install -m755 -d /usr/share/fenrir/tools
|
2017-02-17 03:48:17 -05:00
|
|
|
cp -a tools/* /usr/share/fenrir/tools
|
|
|
|
|
|
|
|
# scripts
|
|
|
|
install -m755 -d /usr/share/fenrir/scripts
|
|
|
|
cp -a "config/scripts/wlan__-__key_y.sh" /usr/share/fenrir/scripts/
|
|
|
|
|
2017-02-17 03:54:33 -05:00
|
|
|
# keyboard
|
|
|
|
install -m644 -D "config/keyboard/desktop.conf" /etc/fenrir/keyboard/desktop.conf
|
|
|
|
install -m644 -D "config/keyboard/laptop.conf" /etc/fenrir/keyboard/laptop.conf
|
2017-02-17 03:48:17 -05:00
|
|
|
|
2017-02-17 03:54:33 -05:00
|
|
|
# punctuation
|
2017-02-02 03:55:22 -05:00
|
|
|
install -m755 -d /etc/fenrir/punctuation
|
2017-02-17 03:48:17 -05:00
|
|
|
cp -a config/punctuation/* /etc/fenrir/punctuation
|
|
|
|
|
|
|
|
# sound
|
2016-11-04 16:32:35 -04:00
|
|
|
install -d /usr/share/sounds/fenrir
|
2017-02-17 03:48:17 -05:00
|
|
|
cp -a config/sound/default /usr/share/sounds/fenrir/default
|
|
|
|
cp -a config/sound/default-wav /usr/share/sounds/fenrir/default-wav
|
|
|
|
cp -a config/sound/template /usr/share/sounds/fenrir/template
|
2017-02-02 03:55:22 -05:00
|
|
|
|
2017-02-17 03:48:17 -05:00
|
|
|
# config
|
2017-02-17 03:54:33 -05:00
|
|
|
if [ -f "/etc/fenrir/settings/settings.conf" ]; then
|
2017-02-19 20:27:26 -05:00
|
|
|
echo "Do you want to overwrite your current global settings? (y/n)"
|
2017-02-17 03:48:17 -05:00
|
|
|
read yn
|
2017-02-19 08:48:07 -05:00
|
|
|
if [ $yn = "Y" -o $yn = "y" ]; then
|
2017-02-17 03:54:33 -05:00
|
|
|
mv /etc/fenrir/settings/settings.conf /etc/fenrir/settings/settings.conf.bak
|
2017-02-19 20:27:26 -05:00
|
|
|
echo "Your old settings.conf has been backed up to settings.conf.bak."
|
2017-02-17 03:48:17 -05:00
|
|
|
install -m644 -D "config/settings/settings.conf" /etc/fenrir/settings/settings.conf
|
2017-02-17 03:54:33 -05:00
|
|
|
else
|
|
|
|
install -m644 -D "config/settings/settings.conf" /etc/fenrir/settings/settings.conf.current
|
2017-02-17 03:48:17 -05:00
|
|
|
fi
|
2017-02-26 12:33:31 -05:00
|
|
|
else
|
|
|
|
install -m644 -D "config/settings/settings.conf" /etc/fenrir/settings/settings.conf
|
|
|
|
fi
|
2017-02-17 03:48:17 -05:00
|
|
|
|
|
|
|
|
|
|
|
# end message
|
2016-10-22 16:53:24 -04:00
|
|
|
cat << EOF
|
2017-02-19 20:27:26 -05:00
|
|
|
Installation complete.
|
2017-02-19 09:11:53 -05:00
|
|
|
install path:/opt/fenrir
|
|
|
|
settings path:/etc/fenrir
|
|
|
|
|
2017-02-19 20:27:26 -05:00
|
|
|
To test Fenrir
|
2017-02-17 03:48:17 -05:00
|
|
|
sudo systemctl start fenrir
|
2017-02-19 20:27:26 -05:00
|
|
|
To have Fenrir start on system boot:
|
2016-10-22 16:53:24 -04:00
|
|
|
sudo systemctl enable fenrir
|
2017-02-19 09:11:53 -05:00
|
|
|
|
2016-10-22 16:53:24 -04:00
|
|
|
Pulseaudio users may want to run
|
|
|
|
/usr/share/fenrir/tools/configure-pulseaudio
|
2017-02-19 20:27:26 -05:00
|
|
|
once as their user account, then once as root.
|
2016-10-22 16:53:24 -04:00
|
|
|
EOF
|