Vous n'êtes pas identifié(e).
Bonjour, j'aimerai savoir comment faire pour personnaliser le ascii lors du login & password & startx comme sur kalibang
En cherchant j'ai trouvé des informations sur motd mais apparement c'est pas la
de votre réponse
Hors ligne
bonsoir reb00t
si tu fonctionne avec bash, c'est dans ton ~/.profile que ça se passe.
je fonctionne avec zsh, donc c'est dans mon ~/.zprofile, mais c'est pareil.
un exemple avec un multi-session et le startx automatique commenté en fin si tu veux :
[== Indéfini ==]
#!/bin/sh
# set PATH
PATH="$HOME/bin:$PATH"
#gpg-agent
eval $(gpg-agent --daemon)
# text colors
red='\e[0;31m'
blue='\e[0;34m'
cyan='\e[0;36m'
green='\e[0;32m'
yellow='\e[0;33m'
NC='\e[0m'
# background colors
WC='\e[47m'
RED='\e[41m'
BLUE='\e[44m'
CYAN='\e[46m'
GREEN='\e[42m'
YELLOW='\e[43m'
# Si on est dans une console, et qu'aucune instance de X n'est détecté,
# demander si startx doit être lancé
if [[ -t 0 && $(tty) =~ /dev/tty ]] && ! pgrep -u $USER startx &> /dev/null; then
echo ""
echo ""
echo ""
echo ""
echo -e " $WC $NC
$WC $NC
$WC $NC
$WC $GREEN $WC $NC
$WC $GREEN $WC $NC
$WC $RED $WC $GREEN $WC $NC
$WC $RED $WC $GREEN $WC $NC
$WC $NC
$WC $NC
$WC $NC
$WC $NC
$WC $NC $WC $NC $WC $NC
$WC $NC $WC $NC $WC $NC
"
echo -e "$NC [c]li, [v]twm, [n]aked, [e]vilwm, spec[t]rwm, [f]luxbox, [o]penbox, [p]ekwm, [s]afe o_0 ?
"
read choix
case $choix in
c)
clear
#dvtm
echo ""
echo -e "${green}where there is a shell ... there is a way$NC"
echo ""
;;
v)
startx ~/.xinitrc_vtwm
;;
n)
startx ~/.xinitrc_naked
;;
e)
startx ~/.xinitrc_evil
;;
t)
startx ~/.xinitrc_spectrwm
;;
f)
startx ~/.xinitrc_flux
;;
o)
startx ~/.xinitrc_open
;;
p)
startx ~/.xinitrc_pek
;;
s)
startx
;;
*)
clear
echo ""
echo -e "${green} be carefull, there are bunnies in there...$NC"
echo ""
sleep 3s
;;
esac
fi
# startx automatique
#if [[ -t 0 && $(tty) =~ /dev/tty ]] && ! pgrep -u $USER startx &> /dev/null; then
# startx
#fi
Hors ligne
C'est dans issue, il y a un topic dédié là dessus ici: https://linuxtrack.net/viewtopic.php?id=2065
Mais cela impose de démarrer avec startx sans login manager et dans animation de démarrage.
Utiliser des logiciels propriétaires, c'est comme les plats préparés, on est incapable de dire les conservateurs qu'ils contiennent, on dira toujours que c'est bon, mais ça ne remplacera jamais le repas fait maison par sa maman.
]:D #! Crunchbang & Archlinux GNU/Linux User ]:D
Hors ligne