-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlinux_desktop_post-install.sh
25 lines (23 loc) · 1.04 KB
/
linux_desktop_post-install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/bash
clear
if [[ $(locale language) == French ]] ; then
echo 'Ce script a changé d’adresse ! Il est désormais disponible ici :'
echo 'https://codeberg.org/Silejonu/Linux-desktop-post-install'
echo
echo 'Merci d’utiliser la commande suivante pour le lancer :'
echo
echo '##########################'
echo 'cd $(mktemp -d) && wget https://codeberg.org/Silejonu/Linux-desktop-post-install/archive/main.tar.gz && tar xf main.tar.gz && cd linux-desktop-post-install && bash ./linux_desktop_post-install.sh'
echo '##########################'
echo
else
echo 'This script has moved repos! It is now available at:'
echo 'https://codeberg.org/Silejonu/Linux-desktop-post-install'
echo
echo 'Please use the following command from now on:'
echo
echo '##########################'
echo 'cd $(mktemp -d) && wget https://codeberg.org/Silejonu/Linux-desktop-post-install/archive/main.tar.gz && tar xf main.tar.gz && cd linux-desktop-post-install && bash ./linux_desktop_post-install.sh'
echo '##########################'
echo
fi