#!/bin/bash
if [[ -f '/etc/astra_version' ]]; then

    if [[ ! -d $HOME"/.config/REAPER/" ]];then
        mkdir -p $HOME"/.config/REAPER/LangPack/"
        cp /opt/reaper/Russian_ReaperLangPack.reaperlangpack $HOME"/.config/REAPER/LangPack/"
    fi

    cd /opt/reaper/
    ./reaper

else
    zenity --error --title="Ошибка!" --text="Необходима ОС Astra Linux SE!" --width=200
fi
exit 0
