-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
71 lines (64 loc) · 1.64 KB
/
Rakefile
File metadata and controls
71 lines (64 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# frozen_string_literal: true
require 'rake'
desc "install the dot files into user's home directory"
task :install do
replace_all = false
%w[zshrc gitignore gitconfig fdignore].each do |file|
original = File.join(File.dirname(__FILE__), file)
link = File.join(ENV['HOME'], ".#{file}")
if File.exist?(File.join(ENV['HOME'], ".#{file}"))
if replace_all
replace_file(original, link)
else
print "overwrite #{file}? [ynaq] "
case $stdin.gets.chomp
when 'a'
replace_all = true
replace_file(original, link)
when 'y'
replace_file(original, link)
when 'q'
exit
else
puts "skipping #{file}"
end
end
else
link_file(original, link)
end
end
# Handle kitty on its own. Has a special location
replace_all = false
Dir['kitty/*'].each do |file|
original = File.join(File.dirname(__FILE__), file)
link = File.join(ENV['HOME'], '.config', file)
if File.exist?(link)
if replace_all
replace_file(original, link)
else
print "overwrite #{file}? [ynaq] "
case $stdin.gets.chomp
when 'a'
replace_all = true
replace_file(original, link)
when 'y'
replace_file(original, link)
when 'q'
exit
else
puts "skipping #{file}"
end
end
else
link_file(original, link)
end
end
end
def replace_file(original, link)
system %(rm "#{link}")
link_file(original, link)
end
def link_file(original, link)
puts "linking #{original}"
system %(ln -s "#{original}" "#{link}")
end