-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·40 lines (30 loc) · 1 KB
/
install.sh
File metadata and controls
executable file
·40 lines (30 loc) · 1 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
#! /bin/bash
echo "Copying fastfetch configuration..."
cp -r ./fastfetch ~/.config/
echo "✓ Fastfetch configuration copied"
echo "Removing current nvim config..."
rm -rf ~/.config/nvim/
echo "Copying nvim configuration..."
cp -r ./nvim ~/.config/
echo "✓ Neovim configuration copied"
echo "Copying alacritty configuration..."
cp -r ./alacritty ~/.config/
echo "✓ alacritty configuration copied"
echo "Copying picom configuration..."
cp -r ./picom/ ~/.config/
echo "✓ Picom configuration copied"
echo "Copying bspwm configuration..."
cp -r ./bspwm ~/.config/
echo "✓ bspwm configuration copied"
echo "Copying sxhkd configuration..."
cp -r ./sxhkd ~/.config/
echo "✓ sxhkd configuration copied"
echo "Copying polybar configuration..."
cp -r ./polybar ~/.config/
echo "✓ polybar configuration copied"
echo "Copying .bashrc configuration..."
cp ./bash/bashrc ~/.bashrc
echo "✓ .bashrc configuration copied"
echo "Sourcing .bashrc"
source ~/.bashrc
echo "All configurations have been successfully copied!"