1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-04 04:09:26 +00:00

First commit

This commit is contained in:
2019-07-18 18:45:46 +02:00
commit 9f98ffc84d
14 changed files with 962 additions and 0 deletions

13
.config/polybar/launch.sh Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
killall -q polybar
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
export TERMINAL_CMD="tilix --profile orange --new-process -e"
export WM_CONTROL="wmctrl -a"
for monitor in $(polybar --list-monitors | cut -d":" -f1); do
export MONITOR=$monitor
polybar top -c ~/.config/polybar/bar.ini >/dev/null &
done