summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2025-11-25 19:47:31 +0400
committerSuleyman Farajli <suleyman@farajli.net>2025-11-25 19:47:31 +0400
commitc1f52a3cdb585b91f253d5adc68576759b3eb045 (patch)
treeefea8a30626bb23d309fb20f31356ac156d814db /build.sh
parent099da5ed617fdc023d7b597e637c053d69ab0547 (diff)
refactor(build.sh): move `install_daemons`
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/build.sh b/build.sh
index 637adf9..9f8eb59 100644
--- a/build.sh
+++ b/build.sh
@@ -78,7 +78,8 @@ install_vim() { COPY config/vim "${CONFDIR}"; }
install_x11() { COPY config/x11 "${CONFDIR}"; }
install_zathura() { COPY config/zathura "${CONFDIR}"; }
install_wallpapers() { COPY etc/wallpapers "${DATADIR}"; }
-install_daemons() { COPY scriptsdaemons/* "${BINDIR}"; }
+install_script_lib() { COPY scripts/lib/* "${BINDIR}"; }
+install_daemons() { COPY scripts/daemons/* "${BINDIR}"; }
install_pacman() { sudo cp etc/arch/pacman.conf /etc; }
install_git() {
@@ -109,8 +110,6 @@ install_shell() {
LINK "${CONFDIR}"/shell/profile "${ZPROFILE}"
}
-install_script_lib() { COPY scripts/lib/* "${BINDIR}"; }
-
install_cli_scripts() {
install_script_lib
COPY scripts/cli/* "${BINDIR}"