1
0
Fork 0
mirror of https://github.com/Findus23/la-tools.git synced 2024-08-27 19:52:15 +02:00
la-tools/msfonts.sh

14 lines
363 B
Bash
Raw Normal View History

2014-02-23 15:26:32 +01:00
#!/bin/bash
2014-12-01 17:01:47 +01:00
TEXTDOMAIN=la-tools
TEXTDOMAINDIR=./
name=$"Windows fonts"
2014-12-01 20:15:04 +01:00
./apt-update.sh
./installed.sh ttf-mscorefonts-installer $name && exit
2014-02-23 15:26:32 +01:00
if sudo apt-get install ttf-mscorefonts-installer
then
2014-12-01 17:01:47 +01:00
zenity --info --title $"Success" --text $"$name successfully installed"
2014-02-23 15:26:32 +01:00
else
2014-12-01 17:01:47 +01:00
zenity --error --title $"Error" --text $"An error occurred while installing $name"
2014-12-01 18:44:44 +01:00
fi