tvl-depot/configs/setup
William Carroll f06b2edf5c Support additional Linux configurations
- i3 - window manager
- Terminator - terminal preferences
- Rofi - kind of like Finder, but also like Helm and Ivy; dmenu
  replacement
2018-10-02 09:49:23 -04:00

11 lines
279 B
Bash
Executable file

#!/usr/bin/env bash
configs="$DOTFILES/configs"
if [[ $(uname) == 'Darwin' ]]; then
(cd "$configs/os_x" && stow --target="$HOME" *)
elif [[ $(uname) == 'Linux' ]]; then
(cd "$configs/linux" && stow --target="$HOME" *)
fi
(cd "$configs/shared" && stow --target="$HOME" *)