aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager/packages/scripts/small_functions/deprecated/ply-pre
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xhome-manager/packages/scripts/small_functions/deprecated/ply-pre33
1 files changed, 0 insertions, 33 deletions
diff --git a/home-manager/packages/scripts/small_functions/deprecated/ply-pre b/home-manager/packages/scripts/small_functions/deprecated/ply-pre
deleted file mode 100755
index 7053ac62..00000000
--- a/home-manager/packages/scripts/small_functions/deprecated/ply-pre
+++ /dev/null
@@ -1,33 +0,0 @@
-#! /usr/bin/env dash
-
-# shellcheck source=/dev/null
-. %SHELL_LIBRARY_PATH
-
-
-## Preview Plymouth Splash ##
-## by _khAttAm_ ##
-## www.khattam.info ##
-## License: GPL v3 ##
-
-chk_root () {
-
- if [ ! "$( id -u )" -eq 0 ]; then
- echo Must be run as root
- exit 1
- fi
-
-}
-
-chk_root
-
-DURATION=$1
-
-if [ $# -ne 1 ]; then
- DURATION=5
-fi
-
-plymouthd; plymouth --show-splash ;
-for i in $(seq 1 $DURATION); do
- plymouth --update=test"$i" ; sleep 1;
-done;
-plymouth quit