From 1677e3bbdae8269e460df2b21ecdd01b8b82ba43 Mon Sep 17 00:00:00 2001 From: dabruh <11458706-dabruh@users.noreply.gitlab.com> Date: Wed, 8 Jun 2022 10:18:53 +0200 Subject: [PATCH] Rename functions. --- setup_system.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup_system.sh b/setup_system.sh index 7f69fb6..21834ce 100755 --- a/setup_system.sh +++ b/setup_system.sh @@ -176,7 +176,7 @@ function setup_debian_with_apt() { sudo apt-get install $packages -y || return 1 } -function setup_debian_from_pip(){ +function setup_debian_with_pip(){ local targets=("pip-any") packages packages="$(get_packages "${targets[@]}")" @@ -200,7 +200,7 @@ function install_picom() { rm -Rf "$tmp" } -function setup_debian_from_git() { +function setup_debian_with_git() { install_picom || return 1 install_sddm_aerial_theme || return 2 } @@ -208,8 +208,8 @@ function setup_debian_from_git() { function setup_debian() { prepare_debian || return 1 setup_debian_with_apt || return 2 - setup_debian_from_pip || return 3 - setup_debian_from_git || return 4 + setup_debian_with_pip || return 3 + setup_debian_with_git || return 4 configure_sddm || return 5 configure_ufw || return 6 }