mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-16 13:23:09 +01:00
5128120f9e
Here I finally figure out how icons work in Arch Linux (and probably other distributions as well). Other changes include a smaller font size, more gaps, and less line size.
13 lines
349 B
Bash
13 lines
349 B
Bash
#!/bin/sh
|
|
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
# Copyright (C) 2017 Donovan Glover
|
|
|
|
# Terminate any previous instances of polybar
|
|
killall -q polybar
|
|
|
|
# Wait until there are no more polybar instances running
|
|
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
|
|
|
# Start polybar
|
|
launch polybar secondary
|