mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
18 lines
294 B
Bash
Executable File
18 lines
294 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
install() {
|
|
xdg-mime default org.pwmt.zathura.desktop application/pdf
|
|
}
|
|
|
|
uninstall() {
|
|
xdg-mime default brave-browser.desktop application/pdf
|
|
}
|
|
|
|
arg=${1:-""}
|
|
[[ $arg == "install" ]] && install
|
|
[[ $arg == "uninstall" ]] && uninstall
|