f06b2edf5c
- i3 - window manager - Terminator - terminal preferences - Rofi - kind of like Finder, but also like Helm and Ivy; dmenu replacement
11 lines
279 B
Bash
Executable file
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" *)
|