Bruno BELANYI
8d2f357c8c
Switching to Termite because URxvt has weird rendering issues when resizing the font. i3-sensible-terminal needs the TERMINAL environment variable to launch our prefered terminal emulator with the Ctrl+d binding. Bash and Zsh both need a hook to enable Termite to open another terminal in the same directory with the Ctrl+Maj+t binding.
28 lines
476 B
Bash
Executable file
28 lines
476 B
Bash
Executable file
#! /usr/bin/sh
|
|
|
|
# Configuration files
|
|
stow -t ~ X
|
|
stow -t ~ bash
|
|
stow -t ~ emacs
|
|
stow -t ~ git
|
|
stow -t ~ i3
|
|
stow -t ~ i3blocks
|
|
stow -t ~ ranger
|
|
stow -t ~ termite
|
|
stow -t ~ tridactyl
|
|
stow -t ~ vim
|
|
stow -t ~ zsh
|
|
|
|
if ! [ -e ~/scripts ]; then
|
|
# Only create the symlink when the directory doesn't exist
|
|
mkdir ~/scripts
|
|
# Scripts must be in there own directory
|
|
stow -t ~/scripts scripts/
|
|
fi
|
|
|
|
# Common shell files
|
|
stow -t ~ shell/
|
|
|
|
# Wallpapers
|
|
stow -t ~ wallpapers/
|