From cb78290f31886fb1f9a5e7c2a764dda55a459e50 Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Sun, 26 Oct 2025 22:23:31 +0400 Subject: chore: split script installation into CLI and GUI sections --- build.sh | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index ad2439c..bdc7dbe 100644 --- a/build.sh +++ b/build.sh @@ -101,9 +101,16 @@ install_shell() { LINK "${CONFDIR}"/shell/profile "${ZPROFILE}" } -install_scripts() { - mkdir -p "${BINDIR}" - COPY scripts/* "${BINDIR}" +install_script_lib() { COPY scripts/slib "${BINDIR}"; } + +install_cli_scripts() { + install_script_lib + COPY scripts/cli/* "${BINDIR}" +} + +install_gui_scripts() { + install_script_lib + COPY scripts/gui/* "${BINDIR}" } install_liberationmono() { pkg "LiberationMono" sync unpack font_install; } -- cgit v1.2.3