inital commit
This commit is contained in:
parent
356fd76671
commit
21a3f05d47
21 changed files with 366 additions and 1100 deletions
32
common.toml
Normal file
32
common.toml
Normal file
|
@ -0,0 +1,32 @@
|
|||
[macros.install__ubuntu]
|
||||
prefix = ["sudo", "apt-get", "install"]
|
||||
|
||||
[macros.install__arch]
|
||||
prefix = ["sudo", "pacman", "-S"]
|
||||
|
||||
[macros.install__archlinux]
|
||||
prefix = ["sudo", "pacman", "-S"]
|
||||
|
||||
[tasks.default]
|
||||
links = [
|
||||
[".config/htop/htoprc", "config/htop"]
|
||||
]
|
||||
|
||||
[tasks.git]
|
||||
rejects = [["which", "tmux"]]
|
||||
cmds = [["@install", "tmux"]]
|
||||
links = [[".zshrc", "config/tmux"]]
|
||||
|
||||
[tasks.git]
|
||||
rejects = [["which", "git"]],
|
||||
cmds = [["@install", "git"]]
|
||||
templates = [
|
||||
[".gitconfig", "gitconfig"]
|
||||
]
|
||||
|
||||
[tasks.zsh]
|
||||
rejects = [["which", "zsh"]]
|
||||
cmds = [["@install", "zsh"],
|
||||
["chsh", "-s", "/bin/zsh"],
|
||||
["git" ,"clone", "--depth=1" ,"https://github.com/robbyrussell/oh-my-zsh.git", ".oh-my-zsh"],
|
||||
links = [[".zshrc", "config/zshrc"]]
|
Loading…
Add table
Add a link
Reference in a new issue