Reorganize files for easier restoring via stow, more familiar file structure.

This commit is contained in:
2019-10-22 16:04:37 -04:00
parent aaf05c5231
commit b24321d392
49 changed files with 42 additions and 33 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
## A script placed in ~/.config/polybar/ - Uses ${env:MONITOR} ##
## Starts polybars top and bottom on multiple displays ##
###############################################################################
# start-polybar.sh
# Kill any previous polybars
# For each monitor in list up to ':'
for m in $(polybar --list-monitors | cut -d":" -f1); do
# Reload polybars with monitor device name
MONITOR=$m polybar --reload top &
MONITOR=$m polybar --reload bottom &
done