From 457c1dd622e23d9f5d6e1d68c7d585b71b26a2ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Tue, 12 Jan 2021 23:45:53 +0100 Subject: [PATCH] Add fish shell preparation makefile target --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Makefile b/Makefile index f0cda6c..68a4499 100644 --- a/Makefile +++ b/Makefile @@ -228,6 +228,16 @@ create_personal_ssh_github_key: check_os prepare_ssh_dir @echo "and paste copied public key" $(call write_git_ssh_config_entry,github.com,,$(PERSONAL_SSH_KEYS_HOME)/id_rsa_github) +.PHONY: prepare_fish_shell +prepare_fish_shell: check_os + @echo "Preparing fish shell..." + @echo "Installing omf framework" + @curl -L -k https://get.oh-my.fish | fish + @echo "Install foreign-env to enable .profile in fish by running:" + @echo "" + @echo "omf install foreign-env" + @echo "" + .PHONY: prepare_screenshots_dir prepare_screenshots_dir: check_os @echo "Creating screenshots directories"