mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-02-06 00:39:52 +00:00
11 lines
289 B
Bash
Executable File
11 lines
289 B
Bash
Executable File
#!/usr/bin/bash
|
|
RED_FLASHING='\033[6;31m'
|
|
|
|
echo -n $(jq -r '"\(.["image-name"]):\(.["image-branch"])"' < /usr/share/ublue-os/image-info.json)
|
|
|
|
if [[ "$(rpm-ostree status --json --booted)" =~ "ostree-image-signed" ]]; then
|
|
echo -n -e " "
|
|
else
|
|
echo -n -e " ${RED_FLASHING}"
|
|
fi
|