Pages : 1
#1 Le 18/06/2024, à 16:36
- LukePerp
Pensez à YAD pour vos scripts
Bonjour,
Juste un petit rappel pour les amateurs d'interfaces UX / GUI / front-end,
On peux utiliser la commande yad pour afficher de belles interfaces. Je l'utilise depuis des années et pourtant, je viens de découvrir qu'on peux pousser son usage assez loin ! Voici un exemple, un script affichant les informations du système dans un fenêtre avec des onglets et une liste déroulante.
Un excellent guide complet ici : https://yad-guide.ingk.se/YAD_Guide.html
Et des exemples complexes là : https://github.com/v1cont/yad/wiki/
sudo apt install yad
#! /bin/bash
YAD_OPTIONS="--window-icon='dialog-information' --name=IxSysinfo"
KEY=$RANDOM
function show_mod_info {
TXT="\\n<span face='Monospace'>$(modinfo $1 | sed 's/&/\&/g;s/</\</g;s/>/\>/g')</span>"
yad --title="Module information" --button="yad-close" --width=500 \
--image="application-x-addon" --text="$TXT"
}
export -f show_mod_info
# CPU tab
lscpu | sed -r "s/:[ ]*/\n/" |\
yad --plug=$KEY --tabnum=1 --image=cpu --text="CPU information" \
--list --no-selection --column="Parameter" --column="Value" &
# Memory tab
sed -r "s/:[ ]*/\n/" /proc/meminfo |\
yad --plug=$KEY --tabnum=2 --image=memory --text="Memory usage information" \
--list --no-selection --column="Parameter" --column="Value" &
# Harddrive tab
df -T | tail -n +2 | awk '{printf "%s\n%s\n%s\n%s\n%s\n%s\n", $1,$7, $2, $3, $4, $6}' |\
yad --plug=$KEY --tabnum=3 --image=drive-harddisk --text="Disk space usage" \
--list --no-selection --column="Device" --column="Mountpoint" --column="Type" \
--column="Total:sz" --column="Free:sz" --column="Usage:bar" &
# PCI tab
lspci -vmm | sed 's/\&/\&/g' | grep -E "^(Slot|Class|Vendor|Device|Rev):" | cut -f2 |\
yad --plug=$KEY --tabnum=4 --text="PCI bus devices" \
--list --no-selection --column="ID" --column="Class" \
--column="Vendor" --column="Device" --column="Rev" &
# Modules tab
awk '{printf "%s\n%s\n%s\n", $1, $3, $4}' /proc/modules | sed "s/[,-]$//" |\
yad --plug=$KEY --tabnum=5 --text="Loaded kernel modules" \
--image="application-x-addon" --image-on-top \
--list --dclick-action='bash -c "show_mod_info %s"' \
--column="Name" --column="Used" --column="Depends" &
# Battery tab
( acpi -i ; acpi -a ) | sed -r "s/:[ ]*/\n/" | yad --plug=$KEY --tabnum=6 \
--image=battery --text="Battery state" --list --no-selection \
--column="Device" --column="Details" &
# Sensors tab
SENSORS=($(sensors | grep -E '^[^:]+$'))
sid=1
cid=1
for s in ${SENSORS[@]}; do
echo -e "s$sid\n<b>$s</b>\n"
sensors -A "$s" | tail -n +2 | while read ln; do
[[ $ln == "" ]] && continue
echo "$cid:s$sid"
echo $ln | sed -r 's/:[ ]+/\n/'
((cid++))
done
((sid++))
done | yad --plug=$KEY --tabnum=7 --text="Temperature sensors information" \
--list --tree --tree-expanded --no-selection --column="Sensor" --column="Value" &
# main dialog
TXT="<b>Hardware system information</b>\\n\\n"
TXT+="\\tOS: $(lsb_release -ds) on $(hostname)\\n"
TXT+="\\tKernel: $(uname -sr)\\n\\n"
TXT+="\\tUptime: <i>$(uptime)</i>"
yad --notebook --width=600 --height=450 --title="System info" --text="$TXT" --button=yad-close \
--key=$KEY --tab="CPU" --tab="Memory" --tab="Disks" --tab="PCI" --tab="Modules" \
--tab="Battery" --tab="Sensors" --active-tab=${1:-1}
Dernière modification par LukePerp (Le 19/06/2024, à 05:26)
Gamer inside - Ubuntu Mate dernière LTS - Intel i5, 16 Go - Dual boot Windows hors ligne
Hors ligne
#2 Le 19/06/2024, à 15:48
- jepassaitparla
Re : Pensez à YAD pour vos scripts
bonjour,
zut l'info arrive trop tard pour le projet que j'ai fini il y a quelques semaines...
merci pour l'info en tout cas, ça pourrait avantageusement remplacer zenity dans de futurs projets.
c'est clairement à tester.
Hors ligne
Pages : 1