My dot files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

launch_polybar.sh 170B

4 jaren geleden
12345678910
  1. #!/usr/bin/env bash
  2. #terminate running poly
  3. killall -q polybar
  4. #launch bar
  5. echo "---" | tee -a /tmp/top-bar.log
  6. polybar top-bar >>/tmp/top-bar.log 2>&1 &
  7. echo "Done."