/My_Synth_Shell

My instalation for Synth-Shell

GNU General Public License v3.0GPL-3.0

INSTALACION DEL SYNTH-SHELL

Ejecute esto (para Debian 11 y basadas) y Siga los pasos del Instalador (En mi caso lo configuré así… ’i’,’u’,’n’,’y’,’n’,’n’,’n’)...

sudo apt install fonts-powerline
git clone --recursive https://github.com/andresgongora/synth-shell.git
chmod +x synth-shell/setup.sh
cd synth-shell
clear
./setup.sh

CUSTOMIZACION PARA DEBIAN 11

Para Customizarlo con mi tema de Debian 11, realize esto (los archivos a copiar están dentro de la carpeta "Customizacion"):

  1. Copie el 'Nombre_Distro.txt' a su directorio Home y cámbiele el nombre a '.Nombre_Distro.txt' --> Contiene el texto a mostrar cuando se inicie la consola (hecho con neofetch -L y figlet)
  2. Reemplaze con el archivo 'synth-shell-prompt.config' por el que está en ~/.config/synth-shell/synth-shell-prompt.config --> Contiene las configuraciones de colores del Script
  3. Agregue esto al final del ~/.bashrc --> Para imprimir el logo y texto de Debian 11
clear

NEODEBIAN=$(cat ~/.Nombre_Distro.txt)

RED='\033[1;31m'
BLUE='\033[1;34m'
NC='\033[0m' # No Color

# echo -e "${RED} $NEODEBIAN \n"
echo -e "${BLUE} $NEODEBIAN \n"

# neofetch -L

alias actualizar='sudo apt update && sudo apt upgrade -y && sudo apt autoremove --purge -y && flatpak update'                                                       alias ifconfig='nmcli'