diff options
| author | navewindre <boneyaard@gmail.com> | 2025-06-16 04:03:14 +0200 |
|---|---|---|
| committer | navewindre <boneyaard@gmail.com> | 2025-06-16 04:03:14 +0200 |
| commit | 062610bea43b8b31d30039e037f72506d78d5879 (patch) | |
| tree | 9db579130cce431cc3fd17415ff2298ae366baaa /slackware-bootstrap/bootstrap | |
| parent | d6c4365b8de32b621ac46074a9b69908b95686c0 (diff) | |
add themes n slackware bootstrap
Diffstat (limited to 'slackware-bootstrap/bootstrap')
| -rw-r--r-- | slackware-bootstrap/bootstrap | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/slackware-bootstrap/bootstrap b/slackware-bootstrap/bootstrap new file mode 100644 index 0000000..9960bc0 --- /dev/null +++ b/slackware-bootstrap/bootstrap @@ -0,0 +1,17 @@ +#!/bin/bash +basedir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) +username="user" + +while getopts u:a:f: flag +do + case "${flag}" in + u) username=${OPTARG};; + esac +done + +echo "working dir: $basedir" + +sh $basedir/user +sh $basedir/sudo +sh $basedir/slackpkg +sh $basedir/slpkg |
