mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2025-10-07 07:22:36 +02:00
Merge branch 'master' of github.com:LukeSmithxyz/voidrice
This commit is contained in:
commit
cf38cd5ba8
@ -13,6 +13,16 @@ map J zoom out
|
||||
map i recolor
|
||||
map p print
|
||||
map g goto top
|
||||
map [fullscreen] u scroll half-up
|
||||
map [fullscreen] d scroll half-down
|
||||
map [fullscreen] D toggle_page_mode
|
||||
map [fullscreen] r reload
|
||||
map [fullscreen] R rotate
|
||||
map [fullscreen] K zoom in
|
||||
map [fullscreen] J zoom out
|
||||
map [fullscreen] i recolor
|
||||
map [fullscreen] p print
|
||||
map [fullscreen] g goto top
|
||||
|
||||
set default-bg "{background}"
|
||||
set default-fg "{foreground}"
|
||||
|
||||
@ -13,3 +13,13 @@ map J zoom out
|
||||
map i recolor
|
||||
map p print
|
||||
map g goto top
|
||||
map [fullscreen] u scroll half-up
|
||||
map [fullscreen] d scroll half-down
|
||||
map [fullscreen] D toggle_page_mode
|
||||
map [fullscreen] r reload
|
||||
map [fullscreen] R rotate
|
||||
map [fullscreen] K zoom in
|
||||
map [fullscreen] J zoom out
|
||||
map [fullscreen] i recolor
|
||||
map [fullscreen] p print
|
||||
map [fullscreen] g goto top
|
||||
|
||||
@ -4,9 +4,9 @@
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) setsid -w -f "$TERMINAL" -e pulsemixer; pkill -RTMIN+10 "${STATUSBAR:-dwmblocks}" ;;
|
||||
2) wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle ;;
|
||||
4) wpctl set-volume @DEFAULT_AUDIO_SINK@ 1%+ ;;
|
||||
5) wpctl set-volume @DEFAULT_AUDIO_SINK@ 1%- ;;
|
||||
2) wpctl set-mute @DEFAULT_SINK@ toggle ;;
|
||||
4) wpctl set-volume @DEFAULT_SINK@ 1%+ ;;
|
||||
5) wpctl set-volume @DEFAULT_SINK@ 1%- ;;
|
||||
3) notify-send "📢 Volume module" "\- Shows volume 🔊, 🔇 if muted.
|
||||
- Middle click to mute.
|
||||
- Scroll to change." ;;
|
||||
|
||||
@ -3,14 +3,7 @@
|
||||
# Clears the build files of a LaTeX/XeLaTeX build.
|
||||
# I have vim run this file whenever I exit a .tex file.
|
||||
|
||||
case "$1" in
|
||||
*.tex)
|
||||
file=$(readlink -f "$1")
|
||||
dir=$(dirname "$file")
|
||||
base="${file%.*}"
|
||||
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
|
||||
[ "${1##*.}" = "tex" ] && {
|
||||
find "$(dirname "${1}")" -regex '.*\(_minted.*\|.*\.\(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
|
||||
} || printf "Provide a .tex file.\n"
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user