-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
51 lines (44 loc) · 1.15 KB
/
Rakefile
File metadata and controls
51 lines (44 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
require "rake"
desc "Install dotfiles into the home directory"
task :install do
system %Q{mkdir -p ~/.tmp}
system %Q{mkdir -p ~/.config}
system %Q{mkdir -p ~/.config/alacritty}
system %Q{mkdir -p ~/.config/nvim}
replace_all = false
Dir["*"].each do |file|
next if %w[Brewfile Rakefile README.md LICENSE config].include? file
if File.exist?(File.join(ENV["HOME"], ".#{file}"))
if replace_all
replace_file(file)
else
print "overwrite ~/.#{file}? [ynaq] "
case $stdin.gets.chomp
when "a"
replace_all = true
replace_file(file)
when "y"
replace_file(file)
when "q"
exit
else
puts "skipping ~/.#{file}"
end
end
else
link_file(file)
end
end
replace_file "config/nvim/init.lua"
replace_file "config/alacritty/alacritty.toml"
replace_file "config/alacritty/catppuccin-mocha.toml"
replace_file "config/zellij/config.kdl"
end
def replace_file(file)
system %Q{rm "$HOME/.#{file}"}
link_file(file)
end
def link_file(file)
puts "linking ~/.#{file}"
system %Q{ln -s "$PWD/#{file}" "$HOME/.#{file}"}
end