From e09a41dd51683cb7cce6d6ef7ac347d0d51c91fa Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Mon, 6 Oct 2025 21:19:56 +0300 Subject: [PATCH] install: throw MangoHud and foot configs in place only if they don't already exist --- install | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/install b/install index 3abcc51b..55b18a8a 100755 --- a/install +++ b/install @@ -58,7 +58,14 @@ cp -v conf/init.vim $HOME/.config/nvim/init.vim cp -v conf/makepkg.conf $HOME/.makepkg.conf # system information overlay -cp -v conf/MangoHud.conf $HOME/.config/MangoHud/ +if [ ! -f $HOME/.config/MangoHud/MangoHud.conf ]; then + cp -v conf/MangoHud.conf $HOME/.config/MangoHud/ +fi + +# wayland native terminal +if [ ! -f $HOME/.config/foot/foot.ini ]; then + cp -v conf/foot/foot.ini $HOME/.config/foot/foot.ini +fi # the media player cp -v conf/mpv.conf $HOME/.config/mpv/mpv.conf