dotfiles/initialSetup.sh

25 lines
632 B
Bash
Raw Normal View History

#!/bin/bash
# Install packages which are frequently used by me
2019-03-09 12:24:04 +00:00
if [[ $(command -v dnf) == 0 ]]; then
sudo -i dnf install tmux git gnupg2 openssh
elif
sudo pacman -S tmux git gnupg openssh
# Set up tmux
ln -s ./tmux/tmux.conf ~/.tmux.conf
# Get the tmux-plugin-manager
mkdir -p ~/.tmux/plugins
git clone https://github.com/tmux-plugins/tpm.git ~/.tmux/plugins/tpm
2019-03-09 12:24:04 +00:00
# Set up redshift
ln -s ./redshift/redshift.conf ~/.config/redshift/redshift.conf
# Set up gnupg things
mkdir -p ~/.gnupg
ln -s ./gnupg/gpg.conf ~/.gnupg/gpg.conf
ln -s ./gnupg/gpg-agent.conf ~/.gnupg/gpg-agent.conf
ln -s ./gnupg/sshcontrol ~/.gnupg/sshcontrol