From fd38a8b310f00d3f244a8b22b5892040c10fdd8e Mon Sep 17 00:00:00 2001 From: pika Date: Fri, 16 May 2025 11:04:11 +0200 Subject: [PATCH] wip --- hyprlock.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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 ;;