Merge branch 'master' of github.com:LukeSmithxyz/voidrice
This commit is contained in:
commit
f70f44e419
4 changed files with 10 additions and 12 deletions
|
@ -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"
|
||||
|
|
|
@ -2,24 +2,19 @@
|
|||
|
||||
# Originally by Andr3as07 <https://github.com/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"
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue