15 lines
487 B
Bash
Executable File
15 lines
487 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Detectar entorno de escritorio o gestor de ventanas
|
|
if [ "$XDG_CURRENT_DESKTOP" = "GNOME" ]; then
|
|
# Si es GNOME, usa la configuración correspondiente
|
|
termite -c ~/.config/termite/config_gnome "$@"
|
|
elif [ "$DESKTOP_SESSION" = "hyprland" ]; then
|
|
# Si es Hyprland, usa la configuración correspondiente
|
|
termite -c ~/.config/termite/config_hyprland "$@"
|
|
else
|
|
# Si no es ninguno de los anteriores, usa la configuración predeterminada
|
|
termite "$@"
|
|
fi
|
|
|