From dc664c589e48b0587de749709ff5b5b3e207c377 Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Thu, 26 Jun 2025 21:49:39 +0400 Subject: feat(dep.sh): add ssh to optional dependencies --- dep.sh | 43 ++++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 21 deletions(-) (limited to 'dep.sh') diff --git a/dep.sh b/dep.sh index b862f06..d659a77 100755 --- a/dep.sh +++ b/dep.sh @@ -31,27 +31,28 @@ retval=0 # Optional Dependencies, skip QEMU and lualatex check [ "${1}" = "--optional" ] && check \ - cmus \ - latex,pdflatex:"Latex is missing" \ - neomutt,mutt \ - pamus \ - pandoc \ - shellcheck \ - trans:"Translate shell is missing" \ - abook \ - acpi \ - cmus \ - dash \ - docker \ - ffmpeg \ - less \ - pass \ - python3 \ - rsync \ - sudo \ - tldr:"A tldr implementation is missing" \ - unclutter:"unclutter-xfixes is missing" \ - yt-dlp + cmus \ + latex,pdflatex:"Latex is missing" \ + neomutt,mutt \ + pamus \ + pandoc \ + shellcheck \ + ssh \ + trans:"Translate shell is missing" \ + abook \ + acpi \ + cmus \ + dash \ + docker \ + ffmpeg \ + less \ + pass \ + python3 \ + rsync \ + sudo \ + tldr:"A tldr implementation is missing" \ + unclutter:"unclutter-xfixes is missing" \ + yt-dlp # Programs check \ -- cgit v1.2.3 From bae49ac742736d0f49a9ff645055c62a6b0ff5fb Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Thu, 26 Jun 2025 21:53:12 +0400 Subject: feat(dep.sh): add libnotify to dependencies - decapitalize output message of missing packages --- dep.sh | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) (limited to 'dep.sh') diff --git a/dep.sh b/dep.sh index d659a77..0e65741 100755 --- a/dep.sh +++ b/dep.sh @@ -32,13 +32,13 @@ retval=0 # Optional Dependencies, skip QEMU and lualatex check [ "${1}" = "--optional" ] && check \ cmus \ - latex,pdflatex:"Latex is missing" \ + latex,pdflatex:"latex is missing" \ neomutt,mutt \ pamus \ pandoc \ shellcheck \ ssh \ - trans:"Translate shell is missing" \ + trans:"translate shell is missing" \ abook \ acpi \ cmus \ @@ -50,27 +50,28 @@ retval=0 python3 \ rsync \ sudo \ - tldr:"A tldr implementation is missing" \ + tldr:"a tldr implementation is missing" \ unclutter:"unclutter-xfixes is missing" \ yt-dlp # Programs check \ - Xorg \ - dunst \ - fzf \ - git \ - lf \ - mpv \ - nsxiv,sxiv \ - nvim,vim \ - picom \ - qutebrowser \ - scrot \ - setxkbmap \ - startx:"xorg-xinit is missing" \ - xclip \ - zathura \ + Xorg \ + dunst \ + fzf \ + git \ + lf \ + mpv \ + notify-send:"libnotify is missing" \ + nsxiv,sxiv \ + nvim,vim \ + picom \ + qutebrowser \ + scrot \ + setxkbmap \ + startx:"xorg-xinit is missing" \ + xclip \ + zathura \ zsh,bash # Script dependencies -- cgit v1.2.3