regexghost-dotfiles

My dotfiles and scripts
git clone git@git.regexghost.com/regexghost-dotfiles.git
Log | Files | Refs | README

PDF VIEWER_SUBSTITUTION_Zathura_.bashrc (84B)


      1 # Open pdf files in Zathura
      2 pdf () {
      3 	for arg; do
      4 		zathura "$arg" & disown
      5 	done
      6 }