From 10c2eb29aefc7f0ceaf189d64271802bf7bdcb7e Mon Sep 17 00:00:00 2001 From: Tenyun Date: Tue, 26 Jan 2021 20:46:23 +0100 Subject: [PATCH 1/4] Prevent unnecessary caching of tsp output (#888) Co-authored-by: Tenyun --- .local/bin/statusbar/sb-tasks | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.local/bin/statusbar/sb-tasks b/.local/bin/statusbar/sb-tasks index 3c78385..586300e 100755 --- a/.local/bin/statusbar/sb-tasks +++ b/.local/bin/statusbar/sb-tasks @@ -2,24 +2,19 @@ # Originally by Andr3as07 # Some changes by Luke +# Rebuild by Tenyun # This block displays the number running background tasks. Requires tsp. -tspout="$(tsp -l)" +num=$(tsp -l | awk -v numr=0 -v numq=0 '{if (/running/)numr++; if (/queued/)numq++} END{print numr+numq"("numq")"}') # Handle mouse clicks case $BLOCK_BUTTON in - 1) echo "$tspout" > "${XDG_CACHE_HOME:-$HOME/.cache}/tspout" - setsid -f "$TERMINAL" -e less "${XDG_CACHE_HOME:-$HOME/.cache}/tspout" ;; + 1) setsid -f "$TERMINAL" -e tsp -l ;; 3) notify-send "Tasks module" "🤖: number of running/queued background tasks - Left click opens tsp" ;; # Right click 2) $EDITOR "$0" ;; # Middle click esac -numr=$(echo "$tspout" | grep -c "running") -numq=$(echo "$tspout" | grep -c "queued") - -num=$((numr + numq)) - -[ "$num" -gt 0 ] && - echo "🤖$num($numq)" +[ "$num" != "0(0)" ] && + echo "🤖$num" From f4b88997db639d54c08a08dc0fd9cfa202d7f3bf Mon Sep 17 00:00:00 2001 From: skrrtskrrtman <50763036+skrrtskrrtman@users.noreply.github.com> Date: Fri, 5 Feb 2021 21:39:34 +0800 Subject: [PATCH 2/4] add pass to tutorialvids (#892) --- .local/bin/tutorialvids | 1 + 1 file changed, 1 insertion(+) diff --git a/.local/bin/tutorialvids b/.local/bin/tutorialvids index 2ed1542..4a35db9 100755 --- a/.local/bin/tutorialvids +++ b/.local/bin/tutorialvids @@ -21,5 +21,6 @@ calcurse (calendar) https://www.youtube.com/watch?v=hvc-pHjbhdE urlview https://www.youtube.com/watch?v=IgzpAjFgbCw colorschemes with pywal https://www.youtube.com/watch?v=Es79N_9BblE vi mode in shell https://www.youtube.com/watch?v=GqoJQft5R2E +pass (password manager) https://www.youtube.com/watch?v=sVkURNfxPd4 " echo "$vidlist" | grep -P "^$(echo "$vidlist" | grep "https:" | sed 's/\t.*//g' | dmenu -i -p "Learn about what? (ESC to cancel)" -l 20 | awk '{print $1}')\s" | sed 's/.*\t//' | xargs -r mpv From 4e111ddd013c772c9c2509fd2a58ec913fcf32e3 Mon Sep 17 00:00:00 2001 From: Yunus Kahveci Date: Sun, 7 Feb 2021 22:54:53 +0100 Subject: [PATCH 3/4] Encrypted connection to Luke's RSS feed (#887) There is no reason for the URL of Luke's main RSS feed to be transferred over unencrypted HTTP. That's why i changed it to HTTPS. Nothing big, it just mildly infuriated me. --- .config/newsboat/urls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/newsboat/urls b/.config/newsboat/urls index d651459..9a762a8 100644 --- a/.config/newsboat/urls +++ b/.config/newsboat/urls @@ -1,4 +1,4 @@ -http://lukesmith.xyz/rss.xml +https://lukesmith.xyz/rss.xml https://notrelated.libsyn.com/rss https://www.youtube.com/feeds/videos.xml?channel_id=UC2eYFnH61tmytImy1mTYvhA "~Luke Smith (YouTube)" https://www.archlinux.org/feeds/news/ "tech" From 8f36b8feb83e2a75f39b9b2c28e25c310d1ffbbd Mon Sep 17 00:00:00 2001 From: "M. Yas. Davoodeh" <30480116+Davoodeh@users.noreply.github.com> Date: Mon, 8 Feb 2021 01:26:29 +0330 Subject: [PATCH 4/4] Add minted/pyg files to `texclear` (#865) --- .local/bin/texclear | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.local/bin/texclear b/.local/bin/texclear index f6a5062..f38f7be 100755 --- a/.local/bin/texclear +++ b/.local/bin/texclear @@ -8,7 +8,9 @@ case "$1" in file=$(readlink -f "$1") dir=$(dirname "$file") base="${file%.*}" - find "$dir" -maxdepth 1 -type f -regextype gnu-awk -regex "^$base\\.(4tc|xref|tmp|pyc|pyo|fls|vrb|fdb_latexmk|bak|swp|aux|log|synctex\\(busy\\)|lof|lot|maf|idx|mtc|mtc0|nav|out|snm|toc|bcf|run\\.xml|synctex\\.gz|blg|bbl)" -delete ;; + find "$dir" -maxdepth 1 -type f -regextype gnu-awk -regex "^$base\\.(4tc|xref|tmp|pyc|pyg|pyo|fls|vrb|fdb_latexmk|bak|swp|aux|log|synctex\\(busy\\)|lof|lot|maf|idx|mtc|mtc0|nav|out|snm|toc|bcf|run\\.xml|synctex\\.gz|blg|bbl)" -delete + rm -rdf "$dir/_minted-$(basename -- $base)" + ;; *) printf "Give .tex file as argument.\\n" ;; esac