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.
This commit is contained in:
parent
05da4e290c
commit
8f0f9150c1
10
initialSetup.sh
Normal file
10
initialSetup.sh
Normal file
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user