summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorZachIR <zachir@librem.one>2025-07-26 11:24:47 -0500
committerZachIR <zachir@librem.one>2025-07-26 11:24:47 -0500
commit373441fde1ddd2b915cc83e5a43c87fef566b101 (patch)
tree18dd0c47196074065a8e0fda1737b596b64fe114 /Makefile
parentff8f57ea7ac4d850adcb3e2ab0bc625bd9552222 (diff)
Add initial bash configs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 12854c4..a25e316 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!"