20 lines
393 B
Bash
Executable File
20 lines
393 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Restaurer Tilix
|
|
if [ -f tilix.conf ]; then
|
|
dconf load /com/gexperts/Tilix/ < tilix.conf
|
|
echo "Configuration Tilix restaurée"
|
|
else
|
|
echo "Fichier tilix.conf introuvable"
|
|
fi
|
|
|
|
# Restaurer .bashrc
|
|
if [ -f bashrc_backup ]; then
|
|
cp bashrc_backup ~/.bashrc
|
|
source ~/.bashrc
|
|
echo "Fichier .bashrc restauré"
|
|
else
|
|
echo "Fichier bashrc_backup introuvable"
|
|
fi
|
|
|