aboutsummaryrefslogtreecommitdiff
path: root/build/polybar
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2019-12-28 20:54:39 -0500
committerMitch Riedstra <mitch@riedstra.us>2019-12-28 20:54:39 -0500
commit97a39e5fb94627ba7728422c631ec50674b3bf58 (patch)
tree5498451520c095885d0e514b642060f7d3863672 /build/polybar
parent7499778129013ff289ff754f780ace2adf0380ac (diff)
downloaddotfiles-97a39e5fb94627ba7728422c631ec50674b3bf58.tar.gz
dotfiles-97a39e5fb94627ba7728422c631ec50674b3bf58.tar.xz
Add a script to build polybar
Diffstat (limited to 'build/polybar')
-rwxr-xr-xbuild/polybar12
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