From 3644ddc4fe6c79d7b8723f49bc2010d3ab60b707 Mon Sep 17 00:00:00 2001 From: wholteza Date: Thu, 21 Sep 2023 14:42:10 +0200 Subject: [PATCH] install script --- .bashrc | 2 +- .config/requirements/install.sh | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100755 .config/requirements/install.sh diff --git a/.bashrc b/.bashrc index 2bdc2a6..9ff19b1 100644 --- a/.bashrc +++ b/.bashrc @@ -136,7 +136,7 @@ export NVM_DIR="$HOME/.nvm" alias ngdo='ngrok http --domain=devops-extension.ngrok.dev 3000' ## Initialization -alias install-requirements-ubuntu='sudo apt install i3 i3blocks i3lock suckless-tools feh scrot' +alias install-requirements='~/.config/requirements/install.sh' ## Start oh my posh eval "$(oh-my-posh init bash --config '~/.config/oh-my-posh/theme.omp.json')" diff --git a/.config/requirements/install.sh b/.config/requirements/install.sh new file mode 100755 index 0000000..641919b --- /dev/null +++ b/.config/requirements/install.sh @@ -0,0 +1,6 @@ +sudo apt install i3 i3blocks i3lock suckless-tools feh scrot + +curl -s https://ohmyposh.dev/install.sh | sudo bash -s + +source ~/.bashrc +echo Done! \ No newline at end of file