diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2019-12-28 20:54:39 -0500 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2019-12-28 20:54:39 -0500 |
| commit | 97a39e5fb94627ba7728422c631ec50674b3bf58 (patch) | |
| tree | 5498451520c095885d0e514b642060f7d3863672 /build | |
| parent | 7499778129013ff289ff754f780ace2adf0380ac (diff) | |
| download | dotfiles-97a39e5fb94627ba7728422c631ec50674b3bf58.tar.gz dotfiles-97a39e5fb94627ba7728422c631ec50674b3bf58.tar.xz | |
Add a script to build polybar
Diffstat (limited to 'build')
| -rwxr-xr-x | build/polybar | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/build/polybar b/build/polybar new file mode 100755 index 0000000..45120e0 --- /dev/null +++ b/build/polybar @@ -0,0 +1,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 |
