zegervdv / homebrew-zathura

Homebrew formulae to build Zathura on Mac OS X
538 stars 41 forks source link

Can't find the configuration file #88

Closed witne7s closed 2 years ago

witne7s commented 2 years ago

I successfully installed zathura on MacOS 12.2 using the following commands:

 $ git clone https://git.pwmt.org/pwmt/zathura.git
 $ cd zathura
 $ git checkout --track -b develop origin/develop
 $ mkdir build
 $ meson build
 $ cd build
 $ ninja
 $ ninja install

But i can't find the file ~/.config/zathura/zathurarc at all. Could you suggest me where this locates on Mac?

Thanks.

zegervdv commented 2 years ago

You'll have to create it yourself.

witne7s commented 2 years ago

I tried to do it, but it doesn't work. I also was using the command :source inside zathura it does't give an answer.

zegervdv commented 2 years ago

You may need to export XDG_CONFIG_HOME=$HOME/.config.

witne7s commented 2 years ago

It helped. Thank you for the advice!