Update install.sh
This commit is contained in:
parent
cfa8195ee8
commit
5b94d2700e
29
install.sh
29
install.sh
@ -16,7 +16,11 @@ cp -a tools/* /usr/share/fenrir/tools
|
|||||||
install -m755 -d /usr/share/fenrir/scripts
|
install -m755 -d /usr/share/fenrir/scripts
|
||||||
cp -a "config/scripts/wlan__-__key_y.sh" /usr/share/fenrir/scripts/
|
cp -a "config/scripts/wlan__-__key_y.sh" /usr/share/fenrir/scripts/
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# punctuation
|
||||||
install -m755 -d /etc/fenrir/punctuation
|
install -m755 -d /etc/fenrir/punctuation
|
||||||
cp -a config/punctuation/* /etc/fenrir/punctuation
|
cp -a config/punctuation/* /etc/fenrir/punctuation
|
||||||
|
|
||||||
@ -27,29 +31,14 @@ cp -a config/sound/default-wav /usr/share/sounds/fenrir/default-wav
|
|||||||
cp -a config/sound/template /usr/share/sounds/fenrir/template
|
cp -a config/sound/template /usr/share/sounds/fenrir/template
|
||||||
|
|
||||||
# config
|
# config
|
||||||
if [ -f "/etc/fenrir/keyboard/desktop.conf" ]; then
|
if [ -f "/etc/fenrir/settings/settings.conf" ]; then
|
||||||
echo "Do you want overwrite the desktop keyboard layout? (y/n)"
|
|
||||||
read yn
|
|
||||||
if [ $yn = "Y" -o $yn = "y"];
|
|
||||||
then
|
|
||||||
install -m644 -D "config/keyboard/desktop.conf" /etc/fenrir/keyboard/desktop.conf
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f "/etc/fenrir/keyboard/laptop.conf" ]; then
|
|
||||||
echo "Do you want overwrite the laptop keyboard layout? (y/n)"
|
|
||||||
read yn
|
|
||||||
if [ $yn = "Y" -o $yn = "y"];
|
|
||||||
then
|
|
||||||
install -m644 -D "config/keyboard/laptop.conf" /etc/fenrir/keyboard/laptop.conf
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
if [ -f "config/settings/settings.conf" ]; then
|
|
||||||
echo "Do you want overwrite your current settings? (y/n)"
|
echo "Do you want overwrite your current settings? (y/n)"
|
||||||
read yn
|
read yn
|
||||||
if [ $yn = "Y" -o $yn = "y"];
|
if [ $yn = "Y" -o $yn = "y"]; then
|
||||||
then
|
mv /etc/fenrir/settings/settings.conf /etc/fenrir/settings/settings.conf.bak
|
||||||
install -m644 -D "config/settings/settings.conf" /etc/fenrir/settings/settings.conf
|
install -m644 -D "config/settings/settings.conf" /etc/fenrir/settings/settings.conf
|
||||||
|
else
|
||||||
|
install -m644 -D "config/settings/settings.conf" /etc/fenrir/settings/settings.conf.current
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user