blob: 7d2f4f89ba9c68d34ee7b08c14b8fad85da76b9d (
plain) (
blame)
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
|
#!/bin/bash
echo -e "\e[1m\e[1;31mMAKE SURE YOU ARE IN THE DIRECTORY THIS SCRIPT IS LOCATED IN!"
echo -e "\e[0m\e[1;31mIf you're sure you are in the correct dir, press Enter."
read
echo -e "\e[0m"
function command_exists {
command -v $1 &> /dev/null
}
set -x
if [ $UID -ne 0 ]; then
if command_exists sudo; then
SUDO="sudo"
elif command_exists doas; then
SUDO="doas"
fi
fi
if command_exists apt; then
wget -O- https://updates.signal.org/desktop/apt/keys.asc | $SUDO apt-key add -
echo "deb [arch=$(dpkg --print-architecture)] https://updates.signal.org/desktop/apt xenial main" | sudo tee -a /etc/apt/sources.list.d/signal-xenial.list
$SUDO apt update
$SUDO apt install -y \
bspwm \
xorg \
rofi \
polybar \
scrot \
feh \
picom \
dunst \
lua5.3 \
vlc \
firefox-esr \
thunderbird \
signal-desktop \
fonts-hack \
fonts-noto-color-emoji \
xclip
$SUDO apt purge -y \
lemonbar # automatically installed but unwanted
else
echo "Your distro is not supported."
exit 1
fi
mkdir -p ~/.config/bspwm
ln -s ${PWD}/bspwmrc ~/.config/bspwm/bspwmrc
ln -s ${PWD}/init_monitor.sh ~/.config/bspwm/init_monitor.sh
mkdir -p ~/.config/sxhkd
ln -s ${PWD}/sxhkdrc ~/.config/sxhkd/sxhkdrc
mkdir -p ~/.config/rofi
ln -s ${PWD}/rofi_config ~/.config/rofi/config
mkdir -p ~/.config/polybar
ln -s ${PWD}/polybar ~/.config/polybar
cargo install alacritty
mkdir -p ~/.config/alacritty
ln -s ${PWD}/alacritty.yml ~/.config/alacritty/alacritty.yml
mkdir -p ~/.config
ln -s ${PWD}/picom.conf ~/.config/picom.conf
./shell_only.sh
|