diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2020-12-16 02:12:41 +0100 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2020-12-16 02:12:41 +0100 |
| commit | 004162c05e42a2f2645ca06702567967b1d88961 (patch) | |
| tree | 18319b9654b8ec561524a58fed0fd3af7131647e /install.sh | |
| parent | 2f694c9ab1416de12d6c5da47d384a625662edf1 (diff) | |
.
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 30 |
1 files changed, 17 insertions, 13 deletions
@@ -1,7 +1,8 @@ -#!/usr/bin/env bash +#!/bin/sh set -e -ln -sf -T $(realpath $(dirname ${BASH_SOURCE[0]})) ~/.dotfiles + +ln -sf -T $(cd $(dirname "$0"); pwd) ~/.dotfiles # alacritty ln -sf -T ~/.dotfiles/alacritty ~/.config/alacritty @@ -13,17 +14,9 @@ ln -sf ~/.dotfiles/atom/init.coffee ~/.atom/init.coffee ln -sf ~/.dotfiles/atom/keymap.cson ~/.atom/keymap.cson ln -sf ~/.dotfiles/atom/styles.less ~/.atom/styles.less -# bash -ln -sf ~/.dotfiles/bash/.profile ~/.profile -ln -sf ~/.dotfiles/bash/.bashrc ~/.bashrc -ln -sf ~/.profile ~/.bash_profile - # bspwm ln -sf -T ~/.dotfiles/bspwm ~/.config/bspwm -# fish -ln -sf -T ~/.dotfiles/fish ~/.config/fish - # git ln -sf ~/.dotfiles/git/.gitconfig ~/.gitconfig @@ -51,6 +44,20 @@ ln -sf ~/.dotfiles/qutebrowser/autoconfig.yml ~/.config/qutebrowser/autoconfig.y mkdir -p ~/.config/ranger ln -sf ~/.dotfiles/ranger/rc.conf ~/.config/ranger/rc.conf +# shell +ln -sf ~/.dotfiles/shell/.profile ~/.profile + +# shell - bash +ln -sf ~/.dotfiles/shell/bash/.bashrc ~/.bashrc +ln -sf ~/.profile ~/.bash_profile + +# shell - fish +ln -sf -T ~/.dotfiles/shell/fish ~/.config/fish + +# shell - zsh +ln -sf ~/.dotfiles/shell/zsh/.zshrc ~/.zshrc +ln -sf ~/.profile ~/.zprofile + # sublime mkdir -p ~/.config/sublime-text-3/Packages/User ln -sf "~/.dotfiles/subl3/Package Control.sublime-settings" \ @@ -67,9 +74,6 @@ done # sway ln -sf -T ~/.dotfiles/sway ~/.config/sway -# sxhkd -ln -sf -T ~/.dotfiles/sxhkd ~/.config/sxhkd - # tmux ln -sf ~/.dotfiles/tmux/.tmux.conf ~/.tmux.conf |
