dotfiles/install.conf.json

90 lines
3.2 KiB
JSON
Raw Normal View History

2017-01-26 13:48:55 +01:00
[
{
"defaults": {
"link": {
"relink": true
}
}
},
{
"clean": ["~"]
},
{
"shell": [
2017-06-18 11:07:26 +02:00
["mkdir -p ~/.profile.d/", "Creating local profile dir"],
2017-01-26 13:48:55 +01:00
["mkdir -p ~/.local/bin", "Creating local bin dir"],
2018-10-23 21:22:13 +02:00
["mkdir -p ~/.config/alacritty", "Creating alacritty-config dir"],
2019-04-27 16:35:17 +02:00
["mkdir -p ~/.config/dunst", "Creating dunst dir"],
2019-05-11 15:54:42 +02:00
["mkdir -p ~/.config/htop", "Creating htop dir"],
2017-01-26 13:48:55 +01:00
["mkdir -p ~/.config/i3", "Creating i3-config dir"],
2017-01-28 02:49:29 +01:00
["mkdir -p ~/.config/i3status", "Creating i3-status dir"],
2018-10-22 21:47:42 +02:00
["mkdir -p ~/.config/redshift/hooks", "Creating redshift dir"],
["mkdir -p ~/.config/rofi", "Creating rofi dir"],
2019-04-27 16:35:17 +02:00
["mkdir -p ~/.config/sway", "Creating sway dir"],
2019-11-23 18:11:44 +01:00
["mkdir -p ~/.config/swaylock", "Creating swaylock dir"],
2019-04-27 16:35:17 +02:00
["mkdir -p ~/.config/yay", "Creating yay dir"],
["mkdir -p ~/.vim/pack/dotfiles/", "Creating vim dir"]
2017-01-26 13:48:55 +01:00
]
},
{
"link": {
"~/.dotfiles": "",
"~/.bashrc": "bash/bashrc",
"~/.bash_profile": "bash/bashrc",
2018-10-23 21:22:13 +02:00
"~/.config/alacritty/alacritty.yml": "alacritty/alacritty.yml",
2017-01-26 13:48:55 +01:00
"~/.liquidprompt": "bash/liquidprompt",
"~/.local/bin/host-is-on": "bin/host-is-on.sh",
"~/.local/bin/mdo": "bin/mdo.sh",
2017-01-27 21:07:41 +01:00
"~/.local/bin/mon-toggle": "bin/mon-toggle.sh",
2019-11-16 14:38:42 +01:00
"~/.local/bin/git-authors": "bin/git-authors.sh",
2017-01-26 13:48:55 +01:00
"~/.gitconfig": "git/gitconfig",
"~/.config/i3/config": "i3/i3config",
"~/.config/i3status/config": "i3/i3status",
"~/.local/bin/checknofullscreen": "i3/checknofullscreen.sh",
2017-05-03 23:12:13 +02:00
"~/.local/bin/clean": "bin/clean.sh",
2017-01-26 13:48:55 +01:00
"~/.local/bin/lockscreen": "i3/lockscreen.sh",
"~/.local/bin/lock": "sway/lock.sh",
2019-04-27 16:33:30 +02:00
"~/.config/dunst/dunstrc": "dunst/dunstrc",
2017-01-26 13:48:55 +01:00
"~/.profile.d/load": "shell/load",
"~/.profile.d/10-vars.sh": "shell/vars.sh",
"~/.profile.d/10-paths.sh": "shell/paths.sh",
"~/.profile.d/10-gitrepo-commited.sh": "shell/gitrepo-commited.sh",
"~/.profile.d/10-liquidprompt.sh": "shell/liquidprompt.sh",
"~/.profile.d/20-aliases.sh": "shell/aliases.sh",
"~/.profile.d/20-cd.sh": "shell/cd.sh",
"~/.profile.d/40-extract.sh": "shell/extract.sh",
"~/.profile.d/40-mysqlpw.sh": "shell/mysqlpw.sh",
"~/.profile.d/90-keychain.sh": "shell/keychain.sh",
"~/.profile.d/80-command-not-found.sh": "shell/command-not-found.sh",
2018-05-29 21:04:18 +02:00
"~/.profile.d/81-fzf.sh": "shell/fzf.sh",
2017-01-26 13:48:55 +01:00
"~/.config/redshift.conf": "redshift/redshift.conf",
"~/.config/redshift/hooks/hook.sh": "redshift/hook.sh",
"~/.config/rofi/config.rasi": "rofi/config.rasi",
"~/.config/rofi/arc-dark.rasi": "rofi/arc-dark.rasi",
"~/.config/rofi/system.sh": "rofi/system.sh",
2019-04-27 16:35:17 +02:00
"~/.config/sway/config": "sway/config",
"~/.config/sway/thinkman": "sway/thinkman",
2019-11-23 18:11:44 +01:00
"~/.config/swaylock/config": "sway/lock",
2018-01-31 00:36:23 +01:00
"~/.tmux.conf": "tmux/tmux.conf",
2017-01-26 13:48:55 +01:00
"~/.toprc": "top/toprc",
"~/.config/htop/htoprc": "top/htoprc",
"~/.vimrc": "vim/vimrc",
"~/.vim/pack/dotfiles/start": "vim/start",
2017-01-26 13:48:55 +01:00
"~/.wgetrc": "wget/wgetrc",
2019-04-27 16:35:17 +02:00
"~/.Xresources": "i3/Xresources",
"~/.config/yay/config.json": "yay/config.json"
2017-01-26 13:48:55 +01:00
}
},
{
"shell": [
["git submodule update --init --jobs $(nproc) --recursive", "Installing submodules"],
["cd vim/start/YouCompleteMe && python3 install.py --all"]
2017-01-26 13:48:55 +01:00
]
2019-09-04 15:16:40 +02:00
},
{
"link": {
"~/.local/bin/diff-so-fancy": "git/diff-so-fancy/diff-so-fancy"
}
2017-01-26 13:48:55 +01:00
}
]