-
Notifications
You must be signed in to change notification settings - Fork 5
/
install.sh
executable file
·83 lines (71 loc) · 2.33 KB
/
install.sh
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
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env ruby
require 'erb'
puts "# Syncing to home folder...\n"
def command_found?(command)
system("which #{command} > /dev/null 2>&1")
end
def link_file file
if file =~ /.erb$/
return if ENV["CODESPACES"]
puts "generating ~/.#{file.sub('.erb', '')}"
File.open(File.join(ENV['HOME'], ".#{file.sub('.erb', '')}"), 'w') do |new_file|
new_file.write ERB.new(File.read(file)).result(binding)
end
else
puts "linking ~/.#{file}"
system %Q{ln -s "$PWD/#{file}" "$HOME/.#{file}"}
end
end
def replace_file(file)
system %Q{rm -rf "$HOME/.#{file.sub('.erb', '')}"}
link_file(file)
end
def install(force:)
replace_all = false
[*Dir['*'], *Dir['config/*']].each do |file|
next if %w[Readme.md LICENSE install.sh config].include? file
if File.exist?(File.join(ENV['HOME'], ".#{file.sub('.erb', '')}"))
if File.identical? file, File.join(ENV['HOME'], ".#{file.sub('.erb', '')}")
puts "identical ~/.#{file.sub('.erb', '')}"
elsif replace_all || force
replace_file(file)
else
print "overwrite ~/.#{file.sub('.erb', '')}? [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.sub('.erb', '')}"
end
end
else
link_file(file)
end
end
end
unless command_found?("starship")
puts "Installing starship"
system %Q{sh -c "$(curl -fsSL https://starship.rs/install.sh)" -- --yes}
system "mkdir #{ENV['HOME']}/.config/zsh"
# zsh-syntax-highlighting
system "git clone --depth 1 'https://github.com/zsh-users/zsh-syntax-highlighting.git' \"#{ENV['HOME']}/.config/zsh/zsh-syntax-highlighting\""
# zsh-autosuggestions
system "git clone --depth 1 'https://github.com/zsh-users/zsh-autosuggestions.git' \"#{ENV['HOME']}/.config/zsh/zsh-autosuggestions\""
# zsh-history-substring-search
system "git clone --depth 1 'https://github.com/zsh-users/zsh-history-substring-search.git' \"#{ENV['HOME']}/.config/zsh/zsh-history-substring-search\""
end
puts "Syncing dotfiles"
install(force: ARGV.include?("--force") || !ENV["CODESPACES"].nil?)
puts "Sourcing"
if ENV["SHELL"] == "/bin/zsh"
system "source ~/.zshrc"
else
system "source ~/.bashrc"
end
puts ""
puts "All done!"