diff --git a/.gitignore b/.gitignore index 569ed74..86dd9a7 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ config/enchant config/GIMP config/neomutt/accounts config/neomutt/signature +Bin/calameco.sh diff --git a/Bin/inkscape b/Bin/inkscape new file mode 120000 index 0000000..faafdbb --- /dev/null +++ b/Bin/inkscape @@ -0,0 +1 @@ +/opt/Inkscape \ No newline at end of file diff --git a/Bin/plymouth.sh b/Bin/plymouth.sh new file mode 100755 index 0000000..0977629 --- /dev/null +++ b/Bin/plymouth.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +## 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 + fi +} + +chk_root + +DURATION=$1 +if [ $# -ne 1 ]; then + DURATION=5 +fi + +plymouthd +plymouth --show-splash +for ((I=0; I<$DURATION; I++)); do + plymouth --update=test$I; + sleep 1; + done; +plymouth quit