mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
15 lines
240 B
Bash
Executable file
15 lines
240 B
Bash
Executable file
#!/bin/bash
|
|
|
|
TIME=3
|
|
|
|
echo "Running $TIME-second test..."
|
|
|
|
sudo plymouthd
|
|
sudo plymouth change-mode --shutdown
|
|
|
|
|
|
sudo plymouth --show-splash
|
|
|
|
for ((I=0; I<$TIME; I++)); do sleep 1 ; sudo plymouth --update=test$I ; done
|
|
|
|
sudo plymouth --quit
|