diff options
author | ZachIR <zachir@librem.one> | 2025-07-26 11:25:02 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-07-26 11:25:02 -0500 |
commit | 82506e32c7233cadca8249fb60e28b5e0e13aa2d (patch) | |
tree | 0ffa86fb941753141a0b068051f64e2b238cab54 | |
parent | 373441fde1ddd2b915cc83e5a43c87fef566b101 (diff) |
ZSH make install only needs to setup .zprofile
-rw-r--r-- | Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -32,12 +32,10 @@ install-hyprland-plugins: @hyprpm enable hyprscrolling @echo "Done." -install-zshconfigs: $(ZCONFS) - @echo "Installing zsh conf files..." - @echo ".zshenv..." - @ln -sf `pwd`/zsh/zshenv ~/.zshenv - @echo ".zshrc..." - @ln -sf `pwd`/zsh/zshrc ~/.zshrc +install-zshconfigs: install-shconfigs + @echo "Settings up ZDOTDIR..." + @echo "Installing .zprofile..." + @ln -sf `pwd`/sh/profile ~/.zprofile @echo "Done." install-shconfigs: $(SCONFS) |