This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pacman -Qqd | pacman -Rsu --print - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MAIN_FILE = main | |
| PDF_VIEWER = okular | |
| all: pdf view | |
| compile: | |
| pdflatex $(MAIN_FILE) # > /dev/null 2>&1 | |
| biber: | |
| bibtex $(MAIN_FILE) # > /dev/null 2>&1 | |
| clean: | |
| rm -f *.aux *.bbl *.blg *.log *.out *.toc *.lof *.lot *.acn *.bcf *.glo *.ist *.nav *.run.xml *.snm | |
| view: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo rm -rf /etc/pacman.d/gnupg | |
| sudo pacman-key --init | |
| sudo pacman-key --populate archlinux | |
| sudo pacman -S --needed archlinux-keyring | |
| sudo pacman-key --refresh-keys | |
| sudo pacman -Syu | |
| yay -Scc | |
| yay -Syu |