-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathscript-dialog.sh
More file actions
executable file
·32 lines (23 loc) · 862 Bytes
/
script-dialog.sh
File metadata and controls
executable file
·32 lines (23 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env bash
# Multi-UI Scripting
# https://github.com/lunarcloud/script-dialog
# LGPL-2.1 license
# Get the directory where this script is located
SCRIPT_DIALOG_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Source all modular components
# shellcheck source=./init.sh
source "${SCRIPT_DIALOG_DIR}/init.sh"
# shellcheck source=./helpers.sh
source "${SCRIPT_DIALOG_DIR}/helpers.sh"
# shellcheck source=./messages.sh
source "${SCRIPT_DIALOG_DIR}/messages.sh"
# shellcheck source=./inputs.sh
source "${SCRIPT_DIALOG_DIR}/inputs.sh"
# shellcheck source=./lists.sh
source "${SCRIPT_DIALOG_DIR}/lists.sh"
# shellcheck source=./progressbar.sh
source "${SCRIPT_DIALOG_DIR}/progressbar.sh"
# shellcheck source=./pickers.sh
source "${SCRIPT_DIALOG_DIR}/pickers.sh"
# shellcheck source=./datepicker.sh
source "${SCRIPT_DIALOG_DIR}/datepicker.sh"