From 540eda8a143d97e5043e82d655d313f4aab68d86 Mon Sep 17 00:00:00 2001 From: Yannick Date: Wed, 16 Jul 2025 17:52:05 +0200 Subject: [PATCH] add tldr alias --- .zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.zshrc b/.zshrc index 27e519d..d995fbe 100644 --- a/.zshrc +++ b/.zshrc @@ -113,9 +113,11 @@ alias dcd="docker compose down" alias dcu='UID="$(id -u)" GID="$(id -g)" docker compose up' alias dcud='UID="$(id -u)" GID="$(id -g)" docker compose up -d' alias dbounce='docker compose down && dcud' +alias tldr='tldr -L en' alias needssh="git remote set-url origin \$(git remote get-url origin | sed -e 's|https://github.com/|git@github.com:|' -e 's|/$||' -e 's|\.git$||')" alias icat="kitten icat --background white" alias marptohtml="npx @marp-team/marp-cli@latest --html --theme-set themes/mytheme.css - template.md -o index.html" +alias output-on-all-devices="" alias fs="sudo rc-service filesync" alias fs-sync='kill -SIGHUP "$(cat /run/filesync.pid)"' alias fs-sync-offline='rclone bisync filesync:/files ~/.offline_filesync --conflict-resolve newer --conflict-loser num --timeout 2s --filter-from ~/.offline_filesync/.important-files.txt 2>&1 | grep conflict | grep home | sed -n "s/.*\x1b\[36m\([^[:cntrl:]]*\)\x1b\[0m.*/\1/p" | while read -r conflict; do notify-send "Conflict at $conflict"; echo "Conflict at $conflict" >> ~/.offline_filesync/.conflict_log.txt; done'