Updated Home (markdown)

Patrick Ziegler 2020-12-20 20:27:15 +01:00
parent cd1bbe6ca5
commit 211196a3d5
1 changed files with 2 additions and 2 deletions

@ -57,8 +57,8 @@ killall -q polybar
# Launch bar1 and bar2
echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log
polybar bar1 >>/tmp/polybar1.log 2>&1 & disown
polybar bar2 >>/tmp/polybar2.log 2>&1 & disown
polybar bar1 2>&1 | tee -a /tmp/polybar1.log & disown
polybar bar2 2>&1 | tee -a /tmp/polybar2.log & disown
echo "Bars launched..."
~~~