diff options
author | ZachIR <zachir@librem.one> | 2025-07-26 11:24:47 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-07-26 11:24:47 -0500 |
commit | 373441fde1ddd2b915cc83e5a43c87fef566b101 (patch) | |
tree | 18dd0c47196074065a8e0fda1737b596b64fe114 /Makefile | |
parent | ff8f57ea7ac4d850adcb3e2ab0bc625bd9552222 (diff) |
Add initial bash configs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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!" |