Compare commits

...

2 Commits

Author SHA1 Message Date
randomuser be04461863 make sure that .config directory is created 2022-11-27 19:18:44 +00:00
randomuser 40bdc21829 add rss functionk to bashrc 2022-11-27 19:17:51 +00:00
2 changed files with 9 additions and 1 deletions

View File

@ -1,9 +1,11 @@
LOCATION="$(HOME)/.config"
DATA="$(HOME)/.local/share"
install_local: install_bspwm install_nvim install_sx install_sxhkd install_zathura install_simplestatus install_bash install_ssh install_git install_tridactyl install_htop install_python
install_local: location_setup install_bspwm install_nvim install_sx install_sxhkd install_zathura install_simplestatus install_bash install_ssh install_git install_tridactyl install_htop install_python
firefox: .firefox_env
install: .environment
location_setup:
mkdir -p $(LOCATION) $(DATA)
install_bspwm:
ln -sf $(CURDIR)/bspwm $(LOCATION)/bspwm
install_nvim:

View File

@ -35,4 +35,10 @@ files() {
return 0
}
rss() {
cd ~/.local/share/sfeed/
sfeed_curses *
cd -
}
alias f=files