0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.15.34.105


Current Path : /proc/thread-self/root/snap/core22/1663/bin/
Upload File :
Current File : //proc/thread-self/root/snap/core22/1663/bin/splash-client

#!/bin/bash -eu

# Seed change is "Initialize system state"
msg=
prev_msg=
while true; do
    sleep 0.5
    msg=$(snap change --abs-time '--last=seed?' |
              awk -F ' +' '$1 == "Doing" { print substr($0, index($0, $4)); exit }') \
                  || true
    if [ "$msg" != "$prev_msg" ] && [ -n "$msg" ]; then
        plymouth display-message --text "$msg"
        prev_msg=$msg
    fi
done