Files
ubuntu-kernel-fenix/archives/filesystem/special/Edge1/usr/local/bin/systeminfo.sh
Nick Xie 1098a5a2c0 Edge1: renaming Edge to Edge1
Signed-off-by: Nick Xie <nick@khadas.com>
2022-09-29 10:58:01 +08:00

22 lines
509 B
Bash
Executable File

#!/bin/bash
# Only for desktop
if ! which lightdm; then
exit
fi
. /etc/fenix-release
FENIX=${VERSION}
LINUX=$(uname -r)
UBOOT=$(dpkg -l | grep "linux-u-boot" | awk '{print $3}')
zenity --info \
--title 'System Information' \
--text="<big><b>Fenix: <span foreground=\"blue\">${FENIX}</span>\nLinux: <span foreground=\"blue\">${LINUX}</span>\nU-boot: <span foreground=\"blue\">${UBOOT}</span></b></big>" \
--window-icon=/etc/fenix/icons/systeminfo.png \
--width=250 \
--height=50
exit