diff --git a/hyprlock.sh b/hyprlock.sh index d617398..10267ec 100644 --- a/hyprlock.sh +++ b/hyprlock.sh @@ -91,8 +91,8 @@ getDependencies() { arch) checkAndInstall hyprgraphics ;; debian) if ! command_exists hyprutils; then - cloneAndBuildUtils && - cloneAndBuildGraphics + cloneAndBuildUtils + cloneAndBuildGraphics fi ;; esac @@ -179,16 +179,16 @@ cloneAndBuildLock() { main() { case "$distro" in arch) - _install hyprlock hyprgraphics hyprutils + _install hyprlock ;; debian) - if ! command_exists hyprutils; then - cloneAndBuildUtils - fi - - if ! command_exists hyprgraphics; then - cloneAndBuildGraphics - fi + # if ! command_exists hyprutils; then + # cloneAndBuildUtils + # fi + # + # if ! command_exists hyprgraphics; then + # cloneAndBuildGraphics + # fi cloneAndBuildLock ;;