summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorZachIR <zachir@librem.one>2025-07-26 11:25:13 -0500
committerZachIR <zachir@librem.one>2025-07-26 11:25:13 -0500
commit4f33e1fcdc425edec30791a8d54197284bed81ac (patch)
treef8e9b483be9502afb79b23003913aa460a6914c6 /Makefile
parent155a9d26570fc0f11fd0e0101a2d09d8ad377a45 (diff)
parent82506e32c7233cadca8249fb60e28b5e0e13aa2d (diff)
Merge branch 'master' into car
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 13 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 12854c4..ac56da3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
VIM := $(shell command -v vim 2>/dev/null)
+BCONFS := bash/.bash_logout bash/.bashrc
ZCONFS := zsh/zshenv zsh/zshrc
SCONFS := sh/profile
DCONFS := doas.conf
@@ -9,6 +10,14 @@ install: install-hyprplugins install-zshconfigs install-shconfigs vimplug-vim
install-hyprplugins: install-hyprsplit install-hyprland-plugins
+install-bashconfigs: $(BCONFS) install-shconfigs
+ @echo "Installing bash conf files..."
+ @echo ".bashrc..."
+ @ln -sf `pwd`/bash/.bashrc ~/.bashrc
+ @echo ".bash_logout..."
+ @ln -sf `pwd`/bash/.bash_logout ~/.bash_logout
+ @echo "Done."
+
install-hyprsplit:
@echo "Installing hyprsplit..."
@hyprpm add https://github.com/shezdy/hyprsplit || echo "Already installed!"
@@ -23,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)