feat: Adds zathura after run.

This commit is contained in:
2025-11-13 13:44:08 -05:00
parent 89b12fc5fa
commit 358b9719f1

12
runs/after/zathura Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -e
set -o nounset
set -o pipefail
install() {
xdg-mime default org.pwmt.zathura.desktop application/pdf
}
arg=${1:-""}
[[ $arg == "install" ]] && install