blob: 45120e0fc5593a9cde652825d23b40af96e54060 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -e
# Based off of
# https://github.com/polybar/polybar/wiki/Compiling
git clean -fdx .
mkdir build
cd build
cmake ..
make -j$(nproc)
sudo make install
|