commented sh files

This commit is contained in:
2025-09-11 15:57:06 +02:00
parent 3702bc54a8
commit 0fe55ba06d
17 changed files with 483 additions and 190 deletions

View File

@@ -1,3 +1,13 @@
# Load the tools required for this application. The tools are preset with
# default command-line arguments.
#
# List of tools:
# - fzf: in order to display, search, and navigate lists
# - curl: for API access
# - jq: to parse json files
# - mpv: music player
# - socat: to communicate with the socket mpv is bound to
# - xsel: to copy content to the clipboard (not necessary)
if [ ! "${TOOLS_LOADED:-}" ]; then
if command -v "fzf" >/dev/null; then
FZF="fzf --black --ansi --cycle --tiebreak=chunk,index"