-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·57 lines (51 loc) · 1.12 KB
/
build.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
echo "Building latest miracle-wm..."
git clone https://github.com/mattkae/miracle-wm.git
cd miracle-wm
mkdir build
cd build
cmake ..
make
sudo make install
cd ../..
echo "Building swaybg"
git clone https://github.com/swaywm/swaybg.git
cd swaybg
meson build/
ninja -C build/
sudo ninja -C build/ install
cd ..
echo "Building swaylock..."
git clone https://github.com/swaywm/swaylock
cd swaylock
meson build
ninja -C build
sudo ninja -C build install
sudo chmod a+s /usr/local/bin/swaylock # If you don't have PAM
cd ..
echo "Building nwg-panel..."
git clone https://github.com/nwg-piotr/nwg-panel.git
git clone https://github.com/nwg-piotr/nwg-icon-picker
cd nwg-panel
sudo ./install.sh && cd ../nwg-icon-picker && sudo ./install.sh
cd ..
echo "Building nwg-dock..."
git clone https://github.com/nwg-piotr/nwg-dock.git
cd nwg-dock
make get
make build
sudo make install
cd ..
echo "Building nwg-drawer..."
git clone https://github.com/nwg-piotr/nwg-drawer
cd nwg-drawer
make get
make build
sudo make install
cd ..
echo "Building nwg-bar..."
git clone https://github.com/nwg-piotr/nwg-bar
cd nwg-bar
make get
make build
sudo make install
cd ..