Advertisement
Guest User

Untitled

a guest
Jul 10th, 2021
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #!/usr/bin/env bash
  2. echo "start<sdfFRGElkj"
  3. # Terminate already running bar instances
  4. killall -q polybar
  5. # If all your bars have ipc enabled, you can also use
  6. # polybar-msg cmd quit
  7.  
  8. # Launch bar1 and bar2
  9. echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log
  10. polybar example 2>&1 | tee -a /tmp/polybar1.log & disown
  11. #polybar bar2 2>&1 | tee -a /tmp/polybar2.log & disown
  12.  
  13. echo "Bars launched..."
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement