mirror of https://gitlab.com/dabruh/dotfiles.git
Rename functions.
This commit is contained in:
parent
6dcae70696
commit
1677e3bbda
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue