Re: [CBLX] améliorer le contrast sous la console |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/carrefourblinux Archives
]
- To: carrefourblinux@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [CBLX] améliorer le contrast sous la console
- From: Pierre ESTREM <pierre.estrem@xxxxxxx>
- Date: Tue, 13 Dec 2022 20:04:05 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/simple; d=free.fr; s=smtp-20201208; t=1670958245; bh=Tl74FC8zKPh0c+1pfWQ6KErtBBMZ4FYzigg/aCcld40=; h=From:Subject:To:References:Date:In-Reply-To:From; b=RyDKKCGos6+OSpqy1IwKRIZGtbE93P7TE+vz9JTYpMTAPG/kOpMiHQgV1nQFeamIs AcJn4zrj6oPMfczSbMXOaZ3+QUZlhY8m/K+o81IdUw3cqpcYd0wHc1gJtMyOp6rVvl C+wWFW9UtBmHNl+TmnCpXPpRfYecxkzct4DzbN5UiiCuK448/GThQQkgHgpKFJeNWS r8BtzqnnTuZFMU+QSGPmKxUYR76GTTWiUzYr6V9hvComiPB0gznMvuGVEPuieFCVBH 4T0nG6HoZE2jx4Cm5451cd6r8oNp4mJkz1rLp0nae+a0a/CjqTYdjQpVIocbxGJlOP 28AeQhb7/UvDg==
Bonsoir Aldo et le monde Libre,
Tu dois jouer sur le gamma de l'écran (ou le contraste).
J'ai joint 3 fichier shell.
Tu associes un raccourci clavier à chaque script et tu devrais être
heureux ! :)
Tu nous donneras ton avis.
pierre estrem
Le 13/12/2022 à 08:29, Aldo a écrit :
Hello les amis,
ma compagne est "basse vision" et voudrais savoir s'il y a moyen de
clarifier ce que l'on voit affiché en mode console, par ex. en forçant des
caractères plus blancs sur fond noir ou un reverse-screen avec le noir plus
gras que d'hab, ou en faisant afficher des lignes de moins ou plus gros
caractères.
Bref qq'un s'est-il déjà penché sur le sujet ?
Note: elle bosse davantage en mode graphique, mais pour la gestion / apt /
etc elle voudrait bien travailler plus confo que le mode standard proposé
par la distrib.
Toute piste la bienvenue!
Aldo.
#!/bin/bash
pas="0.1"
ECRAN=`xrandr | grep -i "^.* connected" | cut -f1 -d" "`
if [ -f /tmp/gamma.tmp ]; then
g="$(cat /tmp/gamma.tmp)"
g="$(echo $g+$pas | bc)"
else
g="$(echo 1+$pas | bc)"
fi
echo $g>/tmp/gamma.tmp
xrandr --output $ECRAN --gamma $g:$g:$g
#!/bin/bash
pas="0.05"
mini="0.2"
ECRAN=`xrandr | grep -i "^.* connected" | cut -f1 -d" "`
if [ -f /tmp/gamma.tmp ]; then
g="$(cat /tmp/gamma.tmp)"
[ 1 -eq `echo "$g > $mini" | bc` ] && g="$(echo $g-$pas | bc)"
else
g="$(echo 1-$pas | bc)"
fi
echo $g>/tmp/gamma.tmp
xrandr --output $ECRAN --gamma $g:$g:$g
#!/bin/bash
ECRAN=`xrandr | grep -i "^.* connected" | cut -f1 -d" "`
if [ -f /tmp/gamma.tmp ]; then
rm /tmp/gamma.tmp
fi
xrandr --output $ECRAN --gamma 1:1:1