From 8f0f9150c1b80e0078148a6857f4fd31e4e309df Mon Sep 17 00:00:00 2001 From: jreichmann <34141868+jreichmann@users.noreply.github.com> Date: Thu, 29 Mar 2018 12:49:08 +0200 Subject: [PATCH] Add script to install frequently used packages and tmux/shell costumizations Add a script which will install tmux, tree and git with dnf (works with all distros using dnf). Also clones this repository and the tmux-plugin-manager repository. --- initialSetup.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 initialSetup.sh diff --git a/initialSetup.sh b/initialSetup.sh new file mode 100644 index 0000000..b605dae --- /dev/null +++ b/initialSetup.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Install packages which are frequently used by me +sudo -i dnf install tmux tree git + +# Checkout my dotfiles and the tmux-plugin-manager +mkdir -p ~/.tmux/plugins +git clone https://github.com/tmux-plugins/tpm.git ~/.tmux/plugins/tpm +git clone https://github.com/jreichmann/dotfiles.git +